Skip to content

Commit 550eb94

Browse files
committed
chore: add discord release notification
1 parent 6fb9418 commit 550eb94

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/notify-discord.yml

+29
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)