published #48
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: Print repository dispatch event | |
on: | |
repository_dispatch: | |
types: | |
- published | |
inputs: | |
content: | |
description: Published content | |
required: true | |
jobs: | |
print: | |
runs-on: ubuntu-24.04 | |
name: Print repository dispatch event | |
timeout-minutes: 10 | |
steps: | |
- name: Print the event | |
run: | | |
echo "Publish: ${{ toJson(github.event.client_payload.content) }}" |