[ci] Log author_association (#33213)
For debugging purposes, log author_association
lauren committed
May 15, 2025 at 11:49 UTC
08cb2d7ee732f35ef1935c75c081754bd81d60b9
3 files changed
+3
.github/workflows/compiler_discord_notify.yml
+1
@@ -15,6 +15,7 @@ jobs:
15
outputs:
16
is_member_or_collaborator: ${{ steps.check_is_member_or_collaborator.outputs.is_member_or_collaborator }}
17
steps:
18
+ - run: echo ${{ github.event.pull_request.author_association }}
19
- name: Check is member or collaborator
20
id: check_is_member_or_collaborator
21
if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }}
.github/workflows/runtime_discord_notify.yml
+1
@@ -15,6 +15,7 @@ jobs:
15
outputs:
16
is_member_or_collaborator: ${{ steps.check_is_member_or_collaborator.outputs.is_member_or_collaborator }}
17
steps:
18
+ - run: echo ${{ github.event.pull_request.author_association }}
19
- name: Check is member or collaborator
20
id: check_is_member_or_collaborator
21
if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }}
.github/workflows/shared_label_core_team_prs.yml
+1
@@ -17,6 +17,7 @@ jobs:
17
outputs:
18
is_member_or_collaborator: ${{ steps.check_is_member_or_collaborator.outputs.is_member_or_collaborator }}
19
steps:
20
+ - run: echo ${{ github.event.pull_request.author_association }}
21
- name: Check is member or collaborator
22
id: check_is_member_or_collaborator
23
if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }}