dispatch-event #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |