Skip to content

Feed: Release Tag

Feed: Release Tag #52

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@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
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