From b39023be2f122495b7a51794571d19c692526a55 Mon Sep 17 00:00:00 2001 From: Imran Siddique Date: Mon, 17 Aug 2026 21:02:17 -0700 Subject: [PATCH] fix: enforce all repository maintainers --- .github/workflows/require-maintainer-approval.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/require-maintainer-approval.yml b/.github/workflows/require-maintainer-approval.yml index b13e7b7..62b1a3a 100644 --- a/.github/workflows/require-maintainer-approval.yml +++ b/.github/workflows/require-maintainer-approval.yml @@ -25,7 +25,7 @@ jobs: uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 with: script: | - const MAINTAINERS = ['imran-siddique']; + const MAINTAINERS = ['imran-siddique', 'lywinged']; const author = context.payload.pull_request.user.login; if (MAINTAINERS.includes(author)) { @@ -33,12 +33,6 @@ jobs: return; } - const association = context.payload.pull_request.author_association; - if (association === 'MEMBER' || association === 'OWNER') { - core.info(`Author is ${association}, skipping gate`); - return; - } - // Both pull_request_target and pull_request_review payloads // carry the PR at context.payload.pull_request. const prNumber = context.payload.pull_request.number;