diff --git a/package-lock.json b/package-lock.json index 5fd2278..b10f55d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -50,7 +50,7 @@ "tailwindcss": "^4", "ts-node": "^10.9.2", "tsx": "^4.20.4", - "typescript": "^5.5.3", + "typescript": "^5.9.2", "typescript-eslint": "^8.6.0" } }, diff --git a/scripts/lint-automation/github-issue-creator.ts b/scripts/lint-automation/github-issue-creator.ts index 3a2a91d..e874d7c 100644 --- a/scripts/lint-automation/github-issue-creator.ts +++ b/scripts/lint-automation/github-issue-creator.ts @@ -132,7 +132,9 @@ class GitHubIssueCreator { if (data.total_count > 0) { // Find the most recent issue for this rule const ruleIssues = data.items.filter((issue: any) => - issue.title.includes(ruleId) || issue.body.includes(`**Rule:** \`${ruleId}\``) + issue.title.includes(ruleId) || + issue.body.includes(`**Rule:** \`${ruleId}\``) || + issue.body.includes(`## 🔧 ${ruleId}`) ); if (ruleIssues.length > 0) {