Add release-branch option to filter the Pull Requests by those applied on a partcular release branch

This commit is contained in:
Steve Gilvarry
2015-11-18 16:56:27 +11:00
parent 3fdf0c64df
commit 06a8fe8169
4 changed files with 15 additions and 4 deletions
+3
View File
@@ -143,6 +143,9 @@ module GitHubChangelogGenerator
opts.on("--future-release [RELEASE-VERSION]", "Put the unreleased changes in the specified release number.") do |future_release|
options[:future_release] = future_release
end
opts.on("--release-branch [RELEASE-BRANCH]", "Limit pull requests to the release branch, such as master or release") do |release_branch|
options[:release_branch] = release_branch
end
opts.on("--[no-]verbose", "Run verbosely. Default is true") do |v|
options[:verbose] = v
end