fix: only skip linked-issue check for org members, not collaborators

This commit is contained in:
Kevin Turcios 2026-04-23 05:05:12 -05:00
parent b2858dc328
commit 92c8727495

View file

@ -44,9 +44,9 @@ jobs:
exit 0
fi
# Skip for org members and collaborators
if [[ "$AUTHOR_ASSOCIATION" == "MEMBER" || "$AUTHOR_ASSOCIATION" == "COLLABORATOR" ]]; then
echo "Org member/collaborator ($PR_AUTHOR) — skipping linked issue check."
# Skip for org members
if [[ "$AUTHOR_ASSOCIATION" == "MEMBER" ]]; then
echo "Org member ($PR_AUTHOR) — skipping linked issue check."
exit 0
fi