Skip to content

Instantly share code, notes, and snippets.

@ciiqr
Last active May 3, 2024 19:47
Show Gist options
  • Save ciiqr/31af63601a4b52a05133cf2c87e022e3 to your computer and use it in GitHub Desktop.
Save ciiqr/31af63601a4b52a05133cf2c87e022e3 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'
@kopax-polyconseil
Copy link

client_payload ?

@ahmed2m
Copy link

ahmed2m commented Dec 7, 2022

This is awesome! Thank you!
I added a python equivalent in my fork.

@SoftwarehouseForAutomation

i needed the github action workflow to get info from Jira webhook, sent to github, thanks!

@asarenkansah
Copy link

Appreciate it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment