|
|
@ -35,7 +35,7 @@ if [[ $current = $latest ]]; then
|
|
|
|
exit 0;
|
|
|
|
exit 0;
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
milestone_response=$( curl -s https://api.github.com/repos/${GITHUB_ORGANIZATION}/${GITHUB_REPO}/milestones\?state\=open )
|
|
|
|
milestone_response=$( curl -s -u ${GITHUB_USERNAME}:${GITHUB_PASSWORD} https://api.github.com/repos/${GITHUB_ORGANIZATION}/${GITHUB_REPO}/milestones\?state\=open )
|
|
|
|
milestone_result=$( jq -r -c --arg MILESTONE "$MILESTONE" '.[] | select(has("title")) | select(.title==$MILESTONE)' <<< "$milestone_response" )
|
|
|
|
milestone_result=$( jq -r -c --arg MILESTONE "$MILESTONE" '.[] | select(has("title")) | select(.title==$MILESTONE)' <<< "$milestone_response" )
|
|
|
|
if [[ ${milestone_result} = "null" || ${milestone_result} = "" ]]; then
|
|
|
|
if [[ ${milestone_result} = "null" || ${milestone_result} = "" ]]; then
|
|
|
|
echo "Could not parse milestone: $milestone_response"
|
|
|
|
echo "Could not parse milestone: $milestone_response"
|
|
|
|