We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 718252e commit 76c75c6Copy full SHA for 76c75c6
1 file changed
.github/workflows/release-notification.yml
@@ -0,0 +1,19 @@
1
+name: Release Notification
2
+
3
+on:
4
+ release:
5
+ types: [released]
6
7
+jobs:
8
+ send-slack-notification:
9
+ runs-on: ubuntu-latest
10
+ timeout-minutes: 2
11
+ steps:
12
+ - name: Send slack notification
13
+ id: slack
14
+ uses: slackapi/slack-github-action@v1.25.0
15
+ with:
16
+ channel-id: 'C012YFE3D6D'
17
+ slack-message: "core-interfaces-java release has been triggered!"
18
+ env:
19
+ SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
0 commit comments