Skip to content

Merge pull request #32329 from midgleyc/b-waf-classic-timeout #16

Merge pull request #32329 from midgleyc/b-waf-classic-timeout

Merge pull request #32329 from midgleyc/b-waf-classic-timeout #16

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@e28cf165c92ffef168d23c5c9000cffc8a25e117
with:
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":tag: <https://github.com/${{ github.event.pusher.name }}|${{ github.event.pusher.name }}> pushed tag <https://github.com/hashicorp/terraform-provider-aws/tree/${{ github.event.ref }}|${{ github.event.ref }}>"
}
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.FEED_SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK