We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fb9418 commit 550eb94Copy full SHA for 550eb94
.github/workflows/notify-discord.yml
@@ -0,0 +1,29 @@
1
+name: "Release Please and Notify Discord"
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
+ workflow_dispatch:
7
8
+permissions:
9
+ contents: write
10
+ pull-requests: write
11
12
+jobs:
13
+ notify-discord:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
19
+ - name: Github Releases To Discord
20
+ uses: SethCohen/[email protected]
21
+ with:
22
+ webhook_url: ${{ secrets.DISCORD_WEBHOOK }}
23
+ color: "5378091"
24
+ username: "Riven Release Changelog"
25
+ avatar_url: "https://raw.githubusercontent.com/rivenmedia/riven/main/assets/riven-light.png"
26
+ # content: "||@here||"
27
+ footer_title: "Changelog"
28
+ footer_icon_url: "https://raw.githubusercontent.com/rivenmedia/riven/main/assets/riven-light.png"
29
+ footer_timestamp: true
0 commit comments