From e125aeb7123e688de1d69520af5b3dbe06636d35 Mon Sep 17 00:00:00 2001 From: Kevin Turcios Date: Thu, 23 Apr 2026 06:16:16 -0500 Subject: [PATCH] fix: skip linked issue check for collaborators and owners AUTHOR_ASSOCIATION can be COLLABORATOR (repo-level access) or OWNER, not just MEMBER (org-level). Accept all three. --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a030c3e81..4d84e2aba 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,9 +44,9 @@ jobs: exit 0 fi - # Skip for org members - if [[ "$AUTHOR_ASSOCIATION" == "MEMBER" ]]; then - 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." exit 0 fi