Skip to content
This repository was archived by the owner on Feb 20, 2022. It is now read-only.

Commit 45b1235

Browse files
authored
Merge pull request #130 from OpenCSPM/build
release notification to slack
2 parents 9ca69f5 + 0210134 commit 45b1235

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: release-notification
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
release-notification:
9+
runs-on: ubuntu-20.04
10+
steps:
11+
- name: Send Slack Message
12+
run: |
13+
curl -X POST -H 'Content-type: application/json' --data '{"text":"New OpenCSPM release: ${{ github.event.release.tag_name }} - https://github.com/opencspm/opencspm/releases/tag/${{ github.event.release.tag_name }}"}' ${{ secrets.SLACK_WEBHOOK_URL }}

0 commit comments

Comments
 (0)