Skip to content

Commit 8283b13

Browse files
authored
Create notify-slack.yml
1 parent 6ad5651 commit 8283b13

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/notify-slack.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Notify Slack Channel
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
notify:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: neolution-ch/action-release-notifier@v1
12+
with:
13+
slack-token: ${{ secrets.SLACK_RELEASE_NOTIFIER_TOKEN }}
14+
slack-channel-ids: ${{ vars.SLACK_CHANNEL_ID_RELEASE_ANNOUNCEMENTS }}
15+
ignore-alpha-releases: true
16+
ignore-rc-releases: true

0 commit comments

Comments
 (0)