Skip to content

Instantly share code, notes, and snippets.

@weibeld
Created July 31, 2020 11:20
Show Gist options
  • Save weibeld/48df11d0c685703a130c8398fd3c0fc8 to your computer and use it in GitHub Desktop.
Save weibeld/48df11d0c685703a130c8398fd3c0fc8 to your computer and use it in GitHub Desktop.
GitHub Actions example workflow — Repository Dispatch 2
name: repository-dispatch-2
on:
repository_dispatch:
types: [my-type]
jobs:
my-job:
runs-on: ubuntu-latest
steps:
- name: my-step
run: |
echo "${{ github.event.client_payload.foo }}"
echo "${{ github.event.client_payload.bar }}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment