Skip to content

Instantly share code, notes, and snippets.

@shaneutt
Forked from ciiqr/dispatch.sh
Created October 13, 2021 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaneutt/1d5c19b57421ac6cca0740f9939fe9bf to your computer and use it in GitHub Desktop.
Save shaneutt/1d5c19b57421ac6cca0740f9939fe9bf to your computer and use it in GitHub Desktop.
github actions, repository_dispatch with client_payload
# TODO: replace :token, :user, and :repo
curl -H "Authorization: token :token" \
-H 'Accept: application/vnd.github.everest-preview+json' \
"https://api.github.com/repos/:user/:repo/dispatches" \
-d '{"event_type": "awesomeness", "client_payload": {"foo": "bar"}}'
name: example-client-payload-action
on: repository_dispatch
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: 'echo "field: ${{ github.event.client_payload.foo }}"'
- run: 'echo "payload: ${{ toJson(github.event.client_payload) }}"'
- run: echo baz
if: github.event.action == 'baz'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment