Skip to content

Commit 7724ad2

Browse files
committed
Add 'check milestone issues' script for 2.10.4
1 parent 0330c7e commit 7724ad2

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

src/scripts/scdf-issues-2103

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.10.3,spring-cloud-dataflow-build
5+
2.10.3,spring-cloud-dataflow-common
6+
2.8.3,spring-cloud-deployer
7+
2.8.3,spring-cloud-deployer-local
8+
2.8.3,spring-cloud-deployer-cloudfoundry
9+
2.8.3,spring-cloud-deployer-kubernetes
10+
1.8.3,spring-cloud-common-security-config
11+
2.9.3,spring-cloud-skipper
12+
3.3.3,spring-cloud-dataflow-ui
13+
2.10.3,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;

src/scripts/scdf-issues-2104

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.10.4,spring-cloud-dataflow-build
5+
2.10.4,spring-cloud-dataflow-common
6+
2.8.4,spring-cloud-deployer
7+
2.8.4,spring-cloud-deployer-local
8+
2.8.4,spring-cloud-deployer-cloudfoundry
9+
2.8.4,spring-cloud-deployer-kubernetes
10+
1.8.4,spring-cloud-common-security-config
11+
2.9.4,spring-cloud-skipper
12+
3.3.4,spring-cloud-dataflow-ui
13+
2.10.4,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)