Skip to content

learning-github-actions #15

learning-github-actions

learning-github-actions #15

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

Check failure on line 13 in .github/workflows/webhook.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/webhook.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
- name: Run a script
run: echo "Event of type: $GITHUB_EVENT_NAME"