0.13.0-dev.2 #32
Workflow file for this run
This file contains hidden or 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: Debug Spy | |
| on: | |
| push: | |
| tags: ['*'] | |
| jobs: | |
| spy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Dump GitHub Context | |
| env: | |
| GITHUB_CONTEXT: ${{ toJson(github) }} | |
| run: | | |
| echo "=== WHO TRIGGERED THIS? ===" | |
| echo "Actor: ${{ github.actor }}" | |
| echo "Triggering Actor: ${{ github.triggering_actor }}" | |
| echo "Ref (Tag Name): ${{ github.ref }}" | |
| echo "Event Name: ${{ github.event_name }}" | |
| echo "=== FULL CONTEXT ===" | |
| echo "$GITHUB_CONTEXT" |