@samitouri / QOS-React-1 / commits / bf39780a06

[ci] Fix check_access output (#32933)

the joy of yml

lauren committed Apr 16, 2025 at 17:27 UTC bf39780a066626ebef67d4b3faf7eb163e35782a
3 files changed +3 -3
.github/workflows/compiler_discord_notify.yml
+1 -1
@@ -18,7 +18,7 @@ jobs:
18 - name: Check access
19 id: check_access
20 if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }}
21 - run: echo "is_member_or_collaborator=true" >> "$GITHUB_OUTPUT"
21 + run: echo "is_member_or_collaborator='true'" >> "$GITHUB_OUTPUT"
22
23 check_maintainer:
24 if: ${{ needs.check_access.outputs.is_member_or_collaborator == 'true' }}
.github/workflows/runtime_discord_notify.yml
+1 -1
@@ -18,7 +18,7 @@ jobs:
18 - name: Check access
19 id: check_access
20 if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }}
21 - run: echo "is_member_or_collaborator=true" >> "$GITHUB_OUTPUT"
21 + run: echo "is_member_or_collaborator='true'" >> "$GITHUB_OUTPUT"
22
23 check_maintainer:
24 if: ${{ needs.check_access.outputs.is_member_or_collaborator == 'true' }}
.github/workflows/shared_label_core_team_prs.yml
+1 -1
@@ -19,7 +19,7 @@ jobs:
19 - name: Check access
20 id: check_access
21 if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }}
22 - run: echo "is_member_or_collaborator=true" >> "$GITHUB_OUTPUT"
22 + run: echo "is_member_or_collaborator='true'" >> "$GITHUB_OUTPUT"
23
24 check_maintainer:
25 if: ${{ needs.check_access.outputs.is_member_or_collaborator == 'true' }}