We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e22d9f1 commit aa465aeCopy full SHA for aa465ae
Rakefile
@@ -87,3 +87,20 @@ namespace :lint do
87
end
88
89
task default: ['lint:all', 'test']
90
+
91
+begin
92
+ require 'rubygems'
93
+ require 'github_changelog_generator/task'
94
95
+ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
96
+ config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog github_actions]
97
+ config.user = 'overlookinfra'
98
+ config.project = 'foreman_openbolt'
99
+ gem_version = Gem::Specification.load("#{config.project}.gemspec").version
100
+ config.future_release = gem_version
101
+ end
102
+rescue LoadError
103
+ task :changelog do
104
+ abort("Run `bundle install --with release` to install the `github_changelog_generator` gem.")
105
106
+end
0 commit comments