Skip to content

Commit

Permalink
Release PR action should allow "COLLABORATOR" roles (#580)
Browse files Browse the repository at this point in the history
  • Loading branch information
bvaughn authored Jul 1, 2024
1 parent ac23741 commit dd41fa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- id: check_authorization
run: |
if [[ $AUTHOR_ASSOCIATION == 'MEMBER' || $AUTHOR_ASSOCIATION == 'OWNER' ]]
if [[ $AUTHOR_ASSOCIATION == 'MEMBER' || $AUTHOR_ASSOCIATION == 'OWNER' || $AUTHOR_ASSOCIATION == 'COLLABORATOR' ]]
then
echo "User is authorized to release"
else
Expand Down

0 comments on commit dd41fa8

Please sign in to comment.