We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a0e78c commit 201d049Copy full SHA for 201d049
.github/workflows/pr-merge.yaml
@@ -1,5 +1,6 @@
1
name: Notify Discord on PR Merge
2
on:
3
+ workflow_dispatch:
4
pull_request:
5
types: [closed]
6
@@ -13,4 +14,4 @@
13
14
DISCORD_WEBHOOK_BETA_TESTERS: ${{ secrets.DISCORD_WEBHOOK_BETA_TESTERS }}
15
if: github.event.pull_request.merged == true
16
run: |
- curl -H "Content-Type: application/json" -d '{"content": "Pull Request #{{ github.event.pull_request.number }} merged by {{ github.actor }}"}' $DISCORD_WEBHOOK_BETA_TESTERS
17
+ curl -H "Content-Type: application/json" -d '{"content": "Pull Request ${{ github.event.pull_request.number }} merged by ${{ github.actor }}"}' $DISCORD_WEBHOOK_BETA_TESTERS
0 commit comments