-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add dump event workflow for PR template
- Loading branch information
1 parent
6782b47
commit b193d20
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
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
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 |