Skip to content

Commit ea0eea5

Browse files
authored
update auto close workflow
1 parent 2be945d commit ea0eea5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/auto-close-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
const title = context.payload.issue.title?.trim()
1818
const body = context.payload.issue.body ?? ""
1919
20-
const badTitle = title === "[BUG]"
20+
const badTitle = title?.toLowerCase() === "[bug]"
2121
const badBody = body.includes("A clear and concise description of what the bug is.")
2222
2323
if (badTitle && badBody) {

0 commit comments

Comments
 (0)