test_dispatch #521
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: CI for Repository Dispatch | |
on: | |
repository_dispatch: | |
types: ['test_dispatch'] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Show received client_payload | |
env: | |
CLIENT_PAYLOAD: ${{ toJson(github.event.client_payload) }} | |
run: | | |
echo "Client Payload" | |
echo "$CLIENT_PAYLOAD" |