Skip to content

Feed: Release Tag

Feed: Release Tag #15

Workflow file for this run

name: "Feed: Release Tag"
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
tag-created:
runs-on: ubuntu-latest
steps:
- name: Notify Slack
id: slack
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0
with:
webhook: ${{ secrets.FEED_SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":tag: [AWSCC] <https://github.com/${{ github.event.pusher.name }}|${{ github.event.pusher.name }}> pushed tag <https://github.com/hashicorp/terraform-provider-awscc/tree/${{ github.event.ref }}|${{ github.event.ref }}>"
}
}
]
}