Skip to content

Commit 0c3b481

Browse files
committed
Remove obsolete workflow files and add webhook event example
1 parent ec95428 commit 0c3b481

File tree

6 files changed

+15
-92
lines changed

6 files changed

+15
-92
lines changed

.github/workflows/custom-action.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/greetings.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/manual.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/multi-event.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/webhook.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Webhook Event example"
2+
3+
on:
4+
repository_dispatch:
5+
types:
6+
- webhook
7+
8+
jobs:
9+
respond-to-dispatch:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repo
13+
uses: actions/checkout@v2
14+
- name: Run a script
15+
run: echo "Event of type: $GITHUB_EVENT_NAME"

0 commit comments

Comments
 (0)