[ci] Fix check_access output (#32933)

the joy of yml
This commit is contained in:
lauren
2025-04-16 17:27:09 -04:00
committed by GitHub
parent b04254fdce
commit bf39780a06
3 changed files with 3 additions and 3 deletions

View File

@@ -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' }}

View File

@@ -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' }}

View File

@@ -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' }}