From 5cf3dd8d3ea735e9bf0071c79b7475b4bc29def6 Mon Sep 17 00:00:00 2001 From: Oliver Drotbohm Date: Wed, 14 Aug 2024 17:17:22 +0200 Subject: [PATCH] GH-2202 - Add application.yml for changelog creation. --- .gitignore | 1 + application.yml | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 application.yml diff --git a/.gitignore b/.gitignore index 32727946..dbaf0dac 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ target/ *.orig .springBeans credentials.yml +changelog.txt diff --git a/application.yml b/application.yml new file mode 100644 index 00000000..b44d572f --- /dev/null +++ b/application.yml @@ -0,0 +1,13 @@ +changelog: + repository: spring-projects/spring-hateoas + sections: + - title: ":star: New Features" + labels: ["type: new feature"] + - title: ":bulb: Improvements" + labels: ["type: enhancement"] + - title: ":beetle: Bugs" + labels: ["type: bug"] + - title: ":book: Documentation" + labels: ["in: documentation"] + - title: ":hammer: Dependency Upgrades" + labels: ["type: dependency-upgrade"]