workflows: fix autoclose

This commit is contained in:
tiago
2026-02-08 16:10:36 +00:00
committed by GitHub
parent 04c53abda3
commit 61d1c6dd70
+1 -1
View File
@@ -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,