We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aadd842 commit 4859f5fCopy full SHA for 4859f5f
src/scripts/scdf-issues-296
@@ -0,0 +1,23 @@
1
+#!/bin/bash
2
+
3
+VALUES='
4
+2.9.6,spring-cloud-dataflow-build
5
+2.9.6,spring-cloud-dataflow-common
6
+2.7.6,spring-cloud-deployer
7
+2.7.6,spring-cloud-deployer-local
8
+2.7.6,spring-cloud-deployer-cloudfoundry
9
+2.7.6,spring-cloud-deployer-kubernetes
10
+1.7.6,spring-cloud-common-security-config
11
+2.8.6,spring-cloud-skipper
12
+3.2.6,spring-cloud-dataflow-ui
13
+2.9.6,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