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 359ee5a commit 91e2000Copy full SHA for 91e2000
.github/workflows/manual.yml
.github/workflows/multi-event.yml
.github/workflows/schedule.yml
.github/workflows/webhook.yml
@@ -0,0 +1,15 @@
1
+name: "Webhook Event example"
2
+
3
+on:
4
+ repository_dispatch:
5
+ types:
6
+ - webhook
7
8
+jobs:
9
+ respond-to-dispatch:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repo
13
+ uses: actions/checkout@v2
14
+ - name: Run a script
15
+ run: echo "Event of type: $GITHUB_EVENT_NAME"
0 commit comments