Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 26e81b6

Browse files
author
Corneil du Plessis
committed
Start Release 2.11.3
1 parent 2ac9bfa commit 26e81b6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/scripts/scdf-issues-2_11_3

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
3+
VALUES='
4+
2.11.3,spring-cloud-dataflow
5+
2.9.3,spring-cloud-deployer
6+
3.4.3,spring-cloud-dataflow-ui
7+
'
8+
9+
10+
for VALUE in $VALUES;
11+
do
12+
MILESTONE=$(echo $VALUE | cut -f1 -d,)
13+
REPO=$(echo $VALUE | cut -f2 -d,)
14+
TEMPLATE="{{range .}}spring-cloud/$REPO#{{.number}} {{.title}}{{\"\n\"}}{{end}}"
15+
gh issue list --repo spring-cloud/$REPO --search milestone:$MILESTONE --state all
16+
done;

0 commit comments

Comments
 (0)