From c8c20e09317c704044b57d63d497bcfdce344a89 Mon Sep 17 00:00:00 2001 From: Nightt <87569709+nightt5879@users.noreply.github.com> Date: Tue, 2 Jun 2026 10:58:48 +0800 Subject: [PATCH] fix: remove dead issue gate guard --- .github/workflows/issue-gate.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/issue-gate.yml b/.github/workflows/issue-gate.yml index 6966fdf6..e19921ec 100644 --- a/.github/workflows/issue-gate.yml +++ b/.github/workflows/issue-gate.yml @@ -21,7 +21,6 @@ jobs: const repo = context.repo.repo; const privileged = new Set(['OWNER', 'MEMBER', 'COLLABORATOR']); - if (issue.pull_request) return; if (privileged.has(issue.author_association)) return; if (issue.user.login === 'github-actions[bot]') return;