Skip to content

Commit

Permalink
fix: add dump event workflow for PR template
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrose121 committed Aug 22, 2024
1 parent 6782b47 commit b193d20
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/dump_event.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Re-usable workflow for examining contents of the triggering GitHub event.
on:
workflow_call:

jobs:
run:
name: dump GitHub event
runs-on: ubuntu-latest
steps:
- run: |
echo GITHUB_ACTION: $GITHUB_ACTION
echo GITHUB_WORKFLOW: $GITHUB_WORKFLOW
echo GITHUB_EVENT_NAME: $GITHUB_EVENT_NAME
echo GITHUB_EVENT_PATH: $GITHUB_EVENT_PATH
cat $GITHUB_EVENT_PATH

0 comments on commit b193d20

Please sign in to comment.