We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2be945d commit ea0eea5Copy full SHA for ea0eea5
.github/workflows/auto-close-issues.yml
@@ -17,7 +17,7 @@ jobs:
17
const title = context.payload.issue.title?.trim()
18
const body = context.payload.issue.body ?? ""
19
20
- const badTitle = title === "[BUG]"
+ const badTitle = title?.toLowerCase() === "[bug]"
21
const badBody = body.includes("A clear and concise description of what the bug is.")
22
23
if (badTitle && badBody) {
0 commit comments