Skip to content

Commit 68e7838

Browse files
ci: add release notification (#26)
1 parent df3f32b commit 68e7838

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
+19
Original file line numberDiff line numberDiff line change
@@ -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/[email protected]
15+
with:
16+
channel-id: 'C012YFE3D6D'
17+
slack-message: "core-interfaces-python release has been triggered!"
18+
env:
19+
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}

0 commit comments

Comments
 (0)