Skip to content

Commit a8bd9dd

Browse files
committed
ci: add on-payload-release workflow
1 parent a59b0aa commit a8bd9dd

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: on-payload-release
2+
3+
on:
4+
repository_dispatch:
5+
types: [payload-release-event]
6+
7+
jobs:
8+
receive-repository-dispatch:
9+
runs-on: ubuntu-latest
10+
11+
# Just log that we received the event
12+
steps:
13+
- name: Log the event payload
14+
run: 'echo "Event received: ${{ toJson(github.event.client_payload) }}"'

0 commit comments

Comments
 (0)