Skip to content

webhook

webhook #13

Workflow file for this run

name: "Webhook Event example"
on:
repository_dispatch:
types:
- webhook
jobs:
respond-to-dispatch:
runs-on: ubuntu-latest
steps:
- name: "Run a script"
run: 'echo "Event of type: $GITHUB_EVENT_NAME"'