We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 686dbee commit 90f23acCopy full SHA for 90f23ac
1 file changed
.github/workflows/debug-pr-tarball.yml
@@ -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