Skip to content

Commit

Permalink
[Build] Add release check script for 2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
onobc committed Sep 14, 2023
1 parent 5656c55 commit 598427a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/scripts/scdf-issues-2_11_0
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash

VALUES='
2.11.0,spring-cloud-dataflow
2.9.0,spring-cloud-deployer
3.4.0,spring-cloud-dataflow-ui
'


for VALUE in $VALUES;
do
MILESTONE=$(echo $VALUE | cut -f1 -d,)
REPO=$(echo $VALUE | cut -f2 -d,)
TEMPLATE="{{range .}}spring-cloud/$REPO#{{.number}} {{.title}}{{\"\n\"}}{{end}}"
gh issue list --repo spring-cloud/$REPO --search milestone:$MILESTONE --state all
done;

0 comments on commit 598427a

Please sign in to comment.