Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/discord-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Discord PR Notifications

on:
pull_request:
types: [opened]

jobs:
notify-discord:
runs-on: ubuntu-latest
steps:
- name: Send PR notification to Discord
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
uses: Ilshidur/action-discord@master
with:
args: |
📣 New Pull Request!
#${{ github.event.pull_request.number }}: ${{ github.event.pull_request.title }}
Opened by: ${{ github.event.pull_request.user.login }}
URL: ${{ github.event.pull_request.html_url }}