Prepare release v1.7.27

This commit is contained in:
Romain
2021-01-13 17:16:05 +01:00
committed by GitHub
parent b7adc1960c
commit d7f752de46
3 changed files with 48 additions and 0 deletions

9
script/gcg/readme.md Normal file
View File

@@ -0,0 +1,9 @@
# GCG - GitHub Changelog Generator
Installation: https://github.com/ldez/gcg#how-to-install
## Generates Changelog for a Bug Fix Release
```bash
gcg --config-file=./script/gcg/traefik-bugfix.toml
```

View File

@@ -0,0 +1,27 @@
Owner = "traefik"
RepositoryName = "traefik"
OutputType = "file"
FileName = "traefik_changelog.md"
# example new bugfix v1.7.27
CurrentRef = "v1.7"
PreviousRef = "v1.7.26"
BaseBranch = "v1.7"
FutureCurrentRefName = "v1.7.27"
ThresholdPreviousRef = 10
ThresholdCurrentRef = 10
Debug = true
DisplayLabel = true
LabelExcludes = ["area/infrastructure"]
LabelEnhancement = "kind/enhancement"
LabelDocumentation = "area/documentation"
LabelBug = "kind/bug/fix"
[DisplayLabelOptions]
FilteredPrefixes = ["area/", "platform/"]
ExcludedSuffixes = ["documentation"]
TrimmedPrefixes = ["area/provider/", "area/middleware/", "area/", "platform/"]