summaryrefslogtreecommitdiffstats
path: root/.travis/generate_changelog_for_nightlies.sh
diff options
context:
space:
mode:
authorChris Akritidis <43294513+cakrit@users.noreply.github.com>2019-09-20 15:09:10 +0200
committerGitHub <noreply@github.com>2019-09-20 15:09:10 +0200
commitc6819cd535b3699676099cfe46dfa8c10e289fa6 (patch)
treef4276ff7f262af57554853135a769b77d10c9edd /.travis/generate_changelog_for_nightlies.sh
parentf555472a8ceb189407b103570be9a28031819d4b (diff)
Improve changelog generation and add it back to the pipeline (#6900)
#### Summary Preparation for #6899 Make changelog generation faster and ensure it won't crash. Put it back to the pipeline. ##### Component Name CI/CD ##### Additional Information - Added correct max-issues specification. Note that the number of issues affects the number of displayed PRs. There's no way to ensure that all the PRs in a tag will be displayed, but with a limit of 500 we know that the most recent releases will be complete. - Let the CHANGELOG show links to diffs - Put an invalid Bug tag, to ensure that fixed bugs are not listed (the result with the defaults was incorrect) - Enable running the changelog generation again
Diffstat (limited to '.travis/generate_changelog_for_nightlies.sh')
-rwxr-xr-x.travis/generate_changelog_for_nightlies.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis/generate_changelog_for_nightlies.sh b/.travis/generate_changelog_for_nightlies.sh
index b908628807..2e8da17f59 100755
--- a/.travis/generate_changelog_for_nightlies.sh
+++ b/.travis/generate_changelog_for_nightlies.sh
@@ -51,7 +51,8 @@ docker run -it -v "$(pwd)":/project markmandel/github-changelog-generator:latest
--unreleased-label "**Next release**" \
--no-issues \
--exclude-labels "stale,duplicate,question,invalid,wontfix,discussion,no changelog" \
- --no-compare-link ${OPTS}
+ --max-issues 500 \
+ --bug-labels IGNOREBUGS
echo "Changelog created! Adding packaging/version(${NEW_VERSION}) and CHANGELOG.md to the repository"
echo "${NEW_VERSION}" > packaging/version