We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9230af0 commit f0b1197Copy full SHA for f0b1197
.github/workflows/release-from-pr-comment.yaml
@@ -18,9 +18,10 @@ jobs:
18
steps:
19
- name: Ensure commenter is allowed
20
if: |
21
- github.event.comment.author_association != 'OWNER'
+ github.event.comment.author_association != 'OWNER' &&
22
+ github.event.comment.author_association != 'MEMBER'
23
run: |
- echo "Only OWNER can trigger releases."
24
+ echo "Only OWNER or MEMBER can trigger releases."
25
exit 1
26
27
- name: Validate PR merged to main and parse version
0 commit comments