diff --git a/.github/workflows/auto-close-issues.yml b/.github/workflows/auto-close-issues.yml index 485f5e0..c0e0756 100644 --- a/.github/workflows/auto-close-issues.yml +++ b/.github/workflows/auto-close-issues.yml @@ -13,7 +13,7 @@ jobs: script: | const body = context.payload.issue.body?.toLowerCase() ?? ""; console.log(context.payload.issue) - const badBody = body.includes("a clear and concise description of what the bug is.") + const badBody = body.includes("a clear and concise description of what the bug is") if (badBody) { await github.rest.issues.update({ owner: context.repo.owner,