Merge pull request #9414 from hashicorp/improve_changelog_script

Improve prepare_changelog.sh
This commit is contained in:
Wilken Rivera 2020-06-12 14:01:09 -04:00 committed by GitHub
commit adbf114a59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,14 +11,8 @@ is_doc_or_tech_debt_pr(){
echo "jq not found"
return 1
fi
PR_NUM=$1
out=$(curl -fsS "https://api.github.com/repos/hashicorp/packer/issues/${PR_NUM}" \
| jq '[.labels[].name == "docs" or .labels[].name == "tech-debt"] | any')
exy="$?"
if [ $exy -ne 0 ]; then
echo "bad response from github: manually check PR ${PR_NUM}"
return $exy
fi
out=$(cat pull.json | python -m json.tool \
| jq '[.labels[].name == "docs" or .labels[].name == "tech-debt"] | any')
grep -q true <<< $out
return $?
}
@ -39,11 +33,24 @@ get_prs(){
fi
done | while read PR_NUM
do
if (($DO_PR_CHECK)) && is_doc_or_tech_debt_pr $PR_NUM; then
if [[ -z "${GITHUB_TOKEN}" ]] || [[ -z "${GITHUB_USERNAME}" ]] ; then
out=$(curl -fsS "https://api.github.com/repos/hashicorp/packer/issues/${PR_NUM}" -o pull.json)
else
# authenticated call
out=$(curl -u ${GITHUB_USERNAME}:${GITHUB_TOKEN} -fsS "https://api.github.com/repos/hashicorp/packer/issues/${PR_NUM}" -o pull.json)
fi
exy="$?"
if [ $exy -ne 0 ]; then
echo "bad response from github: manually check PR ${PR_NUM}"
continue
fi
if (($DO_PR_CHECK)) && is_doc_or_tech_debt_pr; then
echo "Skipping PR ${PR_NUM}: labeled as tech debt or docs. (waiting a second so we don't get rate-limited...)"
continue
fi
echo "https://github.com/hashicorp/packer/pull/${PR_NUM}"
echo "$(cat pull.json | python -m json.tool | jq '.title') - https://github.com/hashicorp/packer/pull/${PR_NUM}"
rm pull.json
done
}