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.
2 parents e86f270 + a2248bc commit b01734fCopy full SHA for b01734f
1 file changed
.github/workflows/debug-dispatch.yml
@@ -0,0 +1,14 @@
1
+name: Debug repository_dispatch
2
+on:
3
+ repository_dispatch:
4
+ types: ["*"]
5
+jobs:
6
+ log-event:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Print event type
10
+ run: 'echo "Event type: ${{ github.event.action }}"'
11
+ - name: Print full payload
12
+ run: echo '${{ toJSON(github.event.client_payload) }}'
13
+ - name: Print full event
14
+ run: echo '${{ toJSON(github.event) }}'
0 commit comments