We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82df3d3 commit e125aebCopy full SHA for e125aeb
1 file changed
.github/workflows/ci.yaml
@@ -44,9 +44,9 @@ jobs:
44
exit 0
45
fi
46
47
- # Skip for org members
48
- if [[ "$AUTHOR_ASSOCIATION" == "MEMBER" ]]; then
49
- echo "Org member ($PR_AUTHOR) — skipping linked issue check."
+ # Skip for org members and collaborators
+ if [[ "$AUTHOR_ASSOCIATION" == "MEMBER" || "$AUTHOR_ASSOCIATION" == "COLLABORATOR" || "$AUTHOR_ASSOCIATION" == "OWNER" ]]; then
+ echo "Org member ($PR_AUTHOR, $AUTHOR_ASSOCIATION) — skipping linked issue check."
50
51
52
0 commit comments