Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions bots/bugbuster/src/services/issue-processor/lint-issue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.`
Expand Down
Loading