We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acc12d3 commit b4bb77fCopy full SHA for b4bb77f
.github/workflows/pr-deploy.yaml
@@ -22,7 +22,7 @@ concurrency:
22
23
jobs:
24
pr_commented:
25
- if: github.event_name == 'issue_comment' && contains(github.event.comment.body, '/deploy-pr') && github.event.comment.author_association == 'MEMBER' || github.event_name == 'workflow_dispatch'
+ if: (github.event_name == 'issue_comment' && contains(github.event.comment.body, '/deploy-pr') && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'COLLABORATOR' || github.event.comment.author_association == 'OWNER')) || github.event_name == 'workflow_dispatch'
26
outputs:
27
PR_NUMBER: ${{ steps.pr_number.outputs.PR_NUMBER }}
28
PR_TITLE: ${{ steps.pr_number.outputs.PR_TITLE }}
0 commit comments