Skip to content

Commit 6f63306

Browse files
authored
Merge pull request #51 from bsospace/development
v0.9.0
2 parents 7e600c5 + 2532178 commit 6f63306

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Debug Spy
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
spy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Dump GitHub Context
12+
env:
13+
GITHUB_CONTEXT: ${{ toJson(github) }}
14+
run: |
15+
echo "=== WHO TRIGGERED THIS? ==="
16+
echo "Actor: ${{ github.actor }}"
17+
echo "Triggering Actor: ${{ github.triggering_actor }}"
18+
echo "Ref (Tag Name): ${{ github.ref }}"
19+
echo "Event Name: ${{ github.event_name }}"
20+
21+
echo "=== FULL CONTEXT ==="
22+
echo "$GITHUB_CONTEXT"

0 commit comments

Comments
 (0)