Skip to content

Commit

Permalink
Merge pull request #13 from jenkinsci/regression-is-not-a-major-bug
Browse files Browse the repository at this point in the history
Do not consider regressions as a major bug by default
  • Loading branch information
oleg-nenashev authored Jun 3, 2021
2 parents 439130c + 0ef13a1 commit d899258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate-jenkins-changelog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@
entry['type'] = 'rfe' if labels.include?("developer")
entry['type'] = 'rfe' if labels.include?("internal")
entry['type'] = 'bug' if labels.include?("bug")
entry['type'] = 'bug' if labels.include?("regression-fix")
entry['type'] = 'rfe' if labels.include?("rfe")
entry['type'] = 'major bug' if labels.include?("major-bug")
entry['type'] = 'major rfe' if labels.include?("major-rfe")
entry['type'] = 'major bug' if labels.include?("regression-fix")

# Fetch categories by labels
config['categories'].each do | category |
Expand Down

0 comments on commit d899258

Please sign in to comment.