Skip to content

Commit

Permalink
chore: add release bot (#438)
Browse files Browse the repository at this point in the history
Posts to our releases channel in discord whenever a new release is
published

---------
  • Loading branch information
maxwfreu authored Jun 28, 2023
1 parent 3d35a69 commit 04419bb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/notify-of-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Publish release summary to discord

on:
release:
types: [published]

jobs:
publish-release-summary-to-discord:
runs-on: ubuntu-latest
name: Github Releases To Discord
steps:
- name: Sending message
uses: nhevia/discord-styled-releases@main
with:
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }}
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}

0 comments on commit 04419bb

Please sign in to comment.