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.`