Skip to content

Commit

Permalink
add test dispatch workflow
Browse files Browse the repository at this point in the history
Signed-off-by: BAStos525 <jungle.vas@yandex.ru>
  • Loading branch information
BAStos525 committed Sep 26, 2024
1 parent bdae2d1 commit 630ec93
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test-dispatch-trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Receive repository dispatch event

on:
# Listen to a repository dispatch event by the name of `dispatch-event`
repository_dispatch:
types: [dispatch-event]

jobs:
log:
runs-on: ubuntu-latest
steps:
- name: Event received
run: echo "Event received"

0 comments on commit 630ec93

Please sign in to comment.