From ea0eea560630fb0ba6f5044dd2f33083dd60dae2 Mon Sep 17 00:00:00 2001 From: tiago <70700766+tiagozip@users.noreply.github.com> Date: Sat, 20 Dec 2025 19:37:18 +0000 Subject: [PATCH] update auto close workflow --- .github/workflows/auto-close-issues.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-close-issues.yml b/.github/workflows/auto-close-issues.yml index 120351e..8633e89 100644 --- a/.github/workflows/auto-close-issues.yml +++ b/.github/workflows/auto-close-issues.yml @@ -17,7 +17,7 @@ jobs: const title = context.payload.issue.title?.trim() const body = context.payload.issue.body ?? "" - const badTitle = title === "[BUG]" + const badTitle = title?.toLowerCase() === "[bug]" const badBody = body.includes("A clear and concise description of what the bug is.") if (badTitle && badBody) {