File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ if [[ ${milestone_result} = "null" || ${milestone_result} = "" ]]; then
4343fi
4444
4545milestone_number=$( jq -r ' .number' <<< " $milestone_result" )
46- existing_tasks=$( curl -s https://api.github.com/repos/${GITHUB_ORGANIZATION} /${GITHUB_REPO} /issues\? labels\= type:%20task\& state\= open\& creator\= spring-builds\& milestone\= ${milestone_number} )
46+ existing_tasks=$( curl -u ${GITHUB_USERNAME} : ${GITHUB_PASSWORD} - s https://api.github.com/repos/${GITHUB_ORGANIZATION} /${GITHUB_REPO} /issues\? labels\= type:%20task\& state\= open\& creator\= spring-builds\& milestone\= ${milestone_number} )
4747existing_jdk_issues=$( jq -r -c --arg TITLE " $ISSUE_TITLE " ' .[] | select(has("title")) | select(.title==$TITLE)' <<< " $existing_tasks" )
4848
4949if [[ ${existing_jdk_issues} = " " ]]; then
You can’t perform that action at this time.
0 commit comments