From 0f1d06b85cbd1a8456f633137a89c39a66bf8d34 Mon Sep 17 00:00:00 2001 From: mikee-b <112516913+mikee-b@users.noreply.github.com> Date: Thu, 19 Feb 2026 12:08:13 -0500 Subject: [PATCH] chore(bots/bugbuster): remove goal requirement (#14951) --- bots/bugbuster/src/services/issue-processor/lint-issue.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/bots/bugbuster/src/services/issue-processor/lint-issue.ts b/bots/bugbuster/src/services/issue-processor/lint-issue.ts index e95b58f5160..52cd54b14fe 100644 --- a/bots/bugbuster/src/services/issue-processor/lint-issue.ts +++ b/bots/bugbuster/src/services/issue-processor/lint-issue.ts @@ -47,12 +47,6 @@ export const lintIssue = (issue: lin.Issue, state: types.StateKey): IssueLint[] ) } - const hasProject = issue.project - const hasGoal = _hasLabelOfCategory(issue, 'goal') - if (!hasProject && !hasGoal) { - lints.push(`Issue ${issue.identifier} is missing both a project and a goal label.`) - } - if (!isIssueTitleFormatValid(issue.title)) { lints.push( `Issue ${issue.identifier} has unconventional commit syntax in the title. Issue title should not attempt to follow a formal syntax.`