From d57ed6d17fcfa2e3ae2f00c49a911049ec452f47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ram=C3=B3n=20Hern=C3=A1n=20Roche=20Quintana?= Date: Tue, 12 Dec 2017 10:35:56 -0800 Subject: [PATCH] Changelog generator default params --- .github_changelog_generator | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github_changelog_generator diff --git a/.github_changelog_generator b/.github_changelog_generator new file mode 100644 index 0000000000..b89c58ad05 --- /dev/null +++ b/.github_changelog_generator @@ -0,0 +1,33 @@ +# How to install: +# gem install github_changelog_generator +# How to run: +# github_changelog_generator -u PX4 -p Firmware +# Description: +# The following params are sensible defaults for the PX4 project, +# if you want to do a changelog before a release you need to update since-tag and future-releases, + +# Params: +# github_changelog_generator --help for all options + +# max-issues +# max threshold for github api queries +# make sure you set your CHANGELOG_GITHUB_TOKEN before +# running +max-issues=1500 + +# exclude-tags-regex +# excludes release candidates +exclude-tags-regex=rc[0-9]{1,}|beta[0-9]{1,} + +# since-tag +# version of last stable release +# you need to change this depending on what you need +# if you want a changelog between versions this is the lowest version +since-tag=1.6.5 + +# future-release +# version you are about to release +# if you want a changelog between a version and all unreleased changes grouped as a release +# eg: v1.6.5 to v1.7.0 +future-release=v1.7.0 +