Skip to content

Commit 90f23ac

Browse files
committed
debug: print pull_request_target author_association
1 parent 686dbee commit 90f23ac

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Debug PR Tarball Condition
2+
on:
3+
pull_request_target:
4+
branches: [main]
5+
6+
jobs:
7+
debug:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Print author_association
11+
run: |
12+
echo "author_association: ${{ github.event.pull_request.author_association }}"
13+
echo "author: ${{ github.event.pull_request.user.login }}"
14+
echo "event_name: ${{ github.event_name }}"
15+
echo "action: ${{ github.event.action }}"

0 commit comments

Comments
 (0)