Skip to content

Commit 39b8681

Browse files
committed
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
1 parent 43f6d60 commit 39b8681

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
changelog:
2+
issues:
3+
exclude:
4+
labels: ["duplicate", "invalid", "declined"]
5+
sections:
6+
- title: "New Features"
7+
emoji: ":star:"
8+
labels: ["enhancement"]
9+
- title: "Bug Fixes"
10+
emoji: ":beetle:"
11+
labels: ["bug", "regression"]
12+
- title: "Dependency Upgrades"
13+
emoji: ":hammer:"
14+
labels: ["dependency-upgrade"]
15+
- title: "Non-passive"
16+
emoji: ":rewind:"
17+
labels: ["breaks-passivity"]

scripts/release/wait-for-done.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
VERSION=$1
4+
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"

0 commit comments

Comments
 (0)