Skip to content

Instantly share code, notes, and snippets.

@weibeld
Created July 31, 2020 10:35
Show Gist options
  • Save weibeld/3575a67513d70b25d84f63420833edaa to your computer and use it in GitHub Desktop.
Save weibeld/3575a67513d70b25d84f63420833edaa to your computer and use it in GitHub Desktop.
GitHub Actions example workflow — Repository Dispatch
name: repository-dispatch
on:
repository_dispatch:
types: [my-type]
jobs:
my-job:
runs-on: ubuntu-latest
steps:
- name: my-step
run: echo "Hello World!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment