From 6fea1e5995782b79763c8bb809b58fbaa4303fcd Mon Sep 17 00:00:00 2001 From: Daniel Carabas Date: Mon, 1 Mar 2021 15:58:05 +0200 Subject: [PATCH] Use fork of github_changelog_generator that allows generator to continue on error --- Gemfile | 2 +- Rakefile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index ae2b430dc..beb483a4f 100644 --- a/Gemfile +++ b/Gemfile @@ -24,7 +24,7 @@ group :development do gem "puppet-module-posix-dev-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby] gem "puppet-module-win-default-r#{minor_version}", '~> 1.0', require: false, platforms: [:mswin, :mingw, :x64_mingw] gem "puppet-module-win-dev-r#{minor_version}", '~> 1.0', require: false, platforms: [:mswin, :mingw, :x64_mingw] - gem "github_changelog_generator", require: false + gem "github_changelog_generator", git: 'https://github.com/carabasdaniel/github-changelog-generator.git', require: false end group :system_tests do gem "puppet-module-posix-system-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby] diff --git a/Rakefile b/Rakefile index 2906c15ba..1b828da21 100644 --- a/Rakefile +++ b/Rakefile @@ -54,6 +54,7 @@ if Bundler.rubygems.find_name('github_changelog_generator').any? config.add_pr_wo_labels = true config.issues = false config.merge_prefix = "### UNCATEGORIZED PRS; LABEL THEM ON GITHUB" + config.continue_with_errors = true config.configure_sections = { "Changed" => { "prefix" => "### Changed",