Skip to content

Commit

Permalink
reorder the label precedence
Browse files Browse the repository at this point in the history
We changed the order of the labels in terms of its precedence as an
experiment to see if it makes more sense to have prs that are labelled
with bug or enhancement to always be prioritized. But I think this
doesn't make sense in the actual way that people apply the labels. For
example, a very common use case is that when there is a bug fix for an
unreleased feature in concourse, we will apply the bug label and the
misc label because it does not affect any released versions of
concourse.

Signed-off-by: Clara Fu <[email protected]>
  • Loading branch information
clarafu committed Jan 26, 2021
1 parent 08b41c5 commit 838d15b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
// The ordering of this list is the order of precedence of the labels
var ValidLabels = []string{
"breaking",
"misc",
"bug",
"enhancement",
"misc",
}

type PullRequestsNotLabelled struct {
Expand Down

0 comments on commit 838d15b

Please sign in to comment.