Skip to content

Commit 7253ce1

Browse files
committed
Merge branch '2.2.x' into 2.3.x
Closes gh-23697
2 parents 0abe38d + e86397b commit 7253ce1

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

ci/config/changelog-generator.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
changelog:
2+
repository: spring-projects/spring-boot
3+
sections:
4+
- title: ":star: New Features"
5+
labels:
6+
- "type: enhancement"
7+
- title: ":beetle: Bug Fixes"
8+
labels:
9+
- "type: bug"
10+
- "type: regression"
11+
- title: ":notebook_with_decorative_cover: Documentation"
12+
labels:
13+
- "type: documentation"
14+
- title: ":hammer: Dependency Upgrades"
15+
sort: "title"
16+
labels:
17+
- "type: dependency-upgrade"

ci/scripts/generate-changelog.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
set -e
33

4+
CONFIG_DIR=git-repo/ci/config
45
version=$( cat version/version )
56

67
milestone=${version}
@@ -9,7 +10,7 @@ if [[ $RELEASE_TYPE = "RELEASE" ]]; then
910
fi
1011

1112
java -jar /github-changelog-generator.jar \
12-
--changelog.repository=spring-projects/spring-boot \
13+
--spring.config.location=${CONFIG_DIR}/changelog-generator.yml \
1314
${milestone} generated-changelog/changelog.md
1415

1516
echo ${version} > generated-changelog/version

0 commit comments

Comments
 (0)