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

Commit c3ab60a

Browse files
committed
Update scripts
1 parent d15af75 commit c3ab60a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

src/scripts/scdf-issues-290

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/bin/bash
2+
3+
VALUES='
4+
2.9.0,spring-cloud-dataflow-build
5+
2.9.0,spring-cloud-dataflow-common
6+
2.7.0,spring-cloud-deployer
7+
2.7.0,spring-cloud-deployer-local
8+
2.7.0,spring-cloud-deployer-cloudfoundry
9+
2.7.0,spring-cloud-deployer-kubernetes
10+
1.7.0,spring-cloud-common-security-config
11+
2.8.0,spring-cloud-skipper
12+
3.2.0,spring-cloud-dataflow-ui
13+
2.9.0,spring-cloud-dataflow
14+
'
15+
16+
17+
for VALUE in $VALUES;
18+
do
19+
MILESTONE=$(echo $VALUE | cut -f1 -d,)
20+
REPO=$(echo $VALUE | cut -f2 -d,)
21+
TEMPLATE="{{range .}}spring-cloud/$REPO#{{.number}} {{.title}}{{\"\n\"}}{{end}}"
22+
gh issue list --repo spring-cloud/$REPO --search milestone:$MILESTONE --state all
23+
done;

0 commit comments

Comments
 (0)