You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Rakefile
+6-7
Original file line number
Diff line number
Diff line change
@@ -52,36 +52,35 @@ if Bundler.rubygems.find_name('github_changelog_generator').any?
52
52
config.header="# Change log\n\nAll notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org)."
53
53
config.add_pr_wo_labels=true
54
54
config.issues=false
55
-
config.merge_prefix="### UNCATEGORIZED PRS; GO LABEL THEM"
55
+
config.merge_prefix="### UNCATEGORIZED PRS; LABEL THEM ON GITHUB"
56
56
config.configure_sections={
57
57
"Changed"=>{
58
58
"prefix"=>"### Changed",
59
59
"labels"=>["backwards-incompatible"],
60
60
},
61
61
"Added"=>{
62
62
"prefix"=>"### Added",
63
-
"labels"=>["feature","enhancement"],
63
+
"labels"=>["enhancement","feature"],
64
64
},
65
65
"Fixed"=>{
66
66
"prefix"=>"### Fixed",
67
-
"labels"=>["bugfix"],
67
+
"labels"=>["bug","documentation","bugfix"],
68
68
},
69
69
}
70
70
end
71
71
else
72
72
desc'Generate a Changelog from GitHub'
73
73
task:changelogdo
74
74
raise<<EOM
75
-
The changelog tasks depends on unreleased features of the github_changelog_generator gem.
75
+
The changelog tasks depends on recent features of the github_changelog_generator gem.
76
76
Please manually add it to your .sync.yml for now, and run `pdk update`:
0 commit comments