Skip to content

Commit

Permalink
fix(actions): add MEMBER role to action conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
joshblack authored Jul 27, 2020
1 parent fa022be commit f2f702b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/issues/src/conditions.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const states = {
key: 'from_non_collaborator',
run(context) {
const { issue } = context.payload;
const roles = new Set(['OWNER', 'COLLABORATOR']);
const roles = new Set(['OWNER', 'COLLABORATOR', 'MEMBER']);
return roles.has(issue.author_association);
},
},
Expand Down

0 comments on commit f2f702b

Please sign in to comment.