Skip to content

webhook

webhook #2

Workflow file for this run

name: "Webhook Event example"
on:
repository_dispatch:
types:
- webhook
jobs:
respond-to-dispatch:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Run a script
run: echo "Event of type:$GITHUB_EVENT_NAME"