We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17c5614 commit e993856Copy full SHA for e993856
.github/workflows/notify-release.yml
@@ -0,0 +1,16 @@
1
+name: Notify on Release
2
+
3
+on:
4
+ release:
5
+ types: [ published ]
6
7
+jobs:
8
+ notify:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Discord notification
12
+ env:
13
+ DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
14
+ uses: Ilshidur/action-discord@master
15
+ with:
16
+ args: '**New SnapSafe Android release:** ${{ github.event.release.name }} \n\n **Download Here:** \n\n ${{ github.event.release.html_url }}'
0 commit comments