From caabe7aab45d149f548e8e283a3f8ca67bc410ac Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Tue, 28 Jul 2026 18:03:56 +1000 Subject: [PATCH] fix keep-open for close invalid pr --- .github/workflows/close-invalid-pr-template.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/close-invalid-pr-template.yml b/.github/workflows/close-invalid-pr-template.yml index ce4c9a1bb..4b7d994ec 100644 --- a/.github/workflows/close-invalid-pr-template.yml +++ b/.github/workflows/close-invalid-pr-template.yml @@ -45,7 +45,7 @@ jobs: } const labels = pr.labels.map((label) => label.name); - const skipLabels = ["automated pr", "keep open"]; + const skipLabels = ["automated pr", "keep-open"]; if (skipLabels.some((label) => labels.includes(label))) { core.info(`PR #${prNumber} has a skip label (${labels.join(", ")}) — skipping template validation.`); @@ -136,7 +136,7 @@ jobs: ``, `> Use the template sections, fill in the description, check all prerequisite boxes, and select at least one type of change.`, ``, - `Maintainers can add the \`keep open\` label to exempt a PR from this check.`, + `Maintainers can add the \`keep-open\` label to exempt a PR from this check.`, ``, `Thank you for contributing! 🙏`, ].join("\n");