From a9c4ab8859770b1943fbc1a7973a22e4a21d1027 Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Wed, 16 Apr 2025 17:22:33 -0400 Subject: [PATCH] [ci] Fix check_access output the joy of yml --- .github/workflows/compiler_discord_notify.yml | 2 +- .github/workflows/runtime_discord_notify.yml | 2 +- .github/workflows/shared_label_core_team_prs.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compiler_discord_notify.yml b/.github/workflows/compiler_discord_notify.yml index 0c7574bd16590..c1605819e6ea4 100644 --- a/.github/workflows/compiler_discord_notify.yml +++ b/.github/workflows/compiler_discord_notify.yml @@ -18,7 +18,7 @@ jobs: - name: Check access id: check_access if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }} - run: echo "is_member_or_collaborator=true" >> "$GITHUB_OUTPUT" + run: echo "is_member_or_collaborator='true'" >> "$GITHUB_OUTPUT" check_maintainer: if: ${{ needs.check_access.outputs.is_member_or_collaborator == 'true' }} diff --git a/.github/workflows/runtime_discord_notify.yml b/.github/workflows/runtime_discord_notify.yml index 9b7ee8f25b35d..4a4ec8d14ea28 100644 --- a/.github/workflows/runtime_discord_notify.yml +++ b/.github/workflows/runtime_discord_notify.yml @@ -18,7 +18,7 @@ jobs: - name: Check access id: check_access if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }} - run: echo "is_member_or_collaborator=true" >> "$GITHUB_OUTPUT" + run: echo "is_member_or_collaborator='true'" >> "$GITHUB_OUTPUT" check_maintainer: if: ${{ needs.check_access.outputs.is_member_or_collaborator == 'true' }} diff --git a/.github/workflows/shared_label_core_team_prs.yml b/.github/workflows/shared_label_core_team_prs.yml index ec0b63c177de3..3a74d1c3ff9df 100644 --- a/.github/workflows/shared_label_core_team_prs.yml +++ b/.github/workflows/shared_label_core_team_prs.yml @@ -19,7 +19,7 @@ jobs: - name: Check access id: check_access if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }} - run: echo "is_member_or_collaborator=true" >> "$GITHUB_OUTPUT" + run: echo "is_member_or_collaborator='true'" >> "$GITHUB_OUTPUT" check_maintainer: if: ${{ needs.check_access.outputs.is_member_or_collaborator == 'true' }}