File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -250,7 +250,8 @@ For each candidate where user chose "create":
250250 components = " MicroShift" ,
251251 additional_fields = {
252252 " labels" : [" microshift-ci-ai-generated" ],
253- " security" : {" name" : " Red Hat Employee" }
253+ " security" : {" name" : " Red Hat Employee" },
254+ " customfield_10028" : 0 # Story Points
254255 }
255256 )
256257 ```
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ PROW_URL="https://prow.ci.openshift.org/data.js"
1111fetch_latest_per_job () {
1212 local release=" ${1} "
1313 curl -s --max-time 60 " ${PROW_URL} " | jq --arg release " ${release} " '
14- [.[] | select((.job | contains("microshift")) and (.job | contains($release)))] |
14+ [.[] | select((.job | contains("microshift")) and (.job | contains($release))
15+ and .finished and .finished != "")] |
1516 group_by(.job) |
1617 map(sort_by(.started | tonumber) | reverse | first) |
1718 [.[] | {
You can’t perform that action at this time.
0 commit comments