Add Release Scripts

- wait-for-done is a handy script for periodically checking
Maven for the release

- release-notes-sections is handy for working with Spring Boot
Changelog
This commit is contained in:
Josh Cummings
2023-05-16 09:16:45 -06:00
parent 43f6d60618
commit 39b8681953
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
changelog:
issues:
exclude:
labels: ["duplicate", "invalid", "declined"]
sections:
- title: "New Features"
emoji: ":star:"
labels: ["enhancement"]
- title: "Bug Fixes"
emoji: ":beetle:"
labels: ["bug", "regression"]
- title: "Dependency Upgrades"
emoji: ":hammer:"
labels: ["dependency-upgrade"]
- title: "Non-passive"
emoji: ":rewind:"
labels: ["breaks-passivity"]

View File

@@ -0,0 +1,4 @@
#!/bin/bash
VERSION=$1
until http -h --check-status --ignore-stdin https://repo1.maven.org/maven2/org/springframework/session/spring-session-core/$VERSION/; do sleep 10; clear; done; spd-say "It is now uploaded"