Skip to content

Commit 8efb2d9

Browse files
committed
(maint) - Set max_issues for changelog generator to 500
1 parent f6fa483 commit 8efb2d9

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.sync.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ spec/spec_helper.rb:
2424
.github/workflows/auto_release.yml:
2525
unmanaged: false
2626
Rakefile:
27+
changelog_max_issues: 500
2728
extras:
2829
"FastGettext.default_text_domain = 'default-text-domain'"
29-
.github/workflows/spec.yml:
30-
checks: 'syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop'
31-
unmanaged: false
32-
.github/workflows/release.yml:
33-
unmanaged: false
34-
.travis.yml:
35-
delete: true
30+
.github/workflows/spec.yml:
31+
checks: 'syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop'
32+
unmanaged: false
33+
.github/workflows/release.yml:
34+
unmanaged: false
35+
.travis.yml:
36+
delete: true
3637
changelog_since_tag: "3.2.0"

Rakefile

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ if Bundler.rubygems.find_name('github_changelog_generator').any?
4949
config.user = "#{changelog_user}"
5050
config.project = "#{changelog_project}"
5151
config.since_tag = "3.2.0"
52+
config.max_issues = 500
5253
config.future_release = "#{changelog_future_release}"
5354
config.exclude_labels = ['maintenance']
5455
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)."

0 commit comments

Comments
 (0)