We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25409e3 commit 62439b4Copy full SHA for 62439b4
1 file changed
.github/workflows/ci_linux.yml
@@ -85,6 +85,13 @@ jobs:
85
path: target/debug
86
retention-days: 1
87
88
+ - name: Debug Info
89
+ if: github.event_name == 'pull_request'
90
+ run: |
91
+ echo "Event Name: ${{ github.event_name }}"
92
+ echo "Author Association: ${{ github.event.pull_request.author_association }}"
93
+ echo "Is Owner/Member?: ${{ contains(fromJson('[\"OWNER\", \"MEMBER\"]'), github.event.pull_request.author_association) }}"
94
+
95
test:
96
name: ${{ matrix.variance.name }}
97
# This job depends on the build job completing successfully for the same matrix entry
0 commit comments