From 6f645d367591a2d3734caa28dacdd7bcdcef3528 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Fri, 23 Nov 2018 12:55:28 +1100 Subject: [PATCH] tools: don't use GH API for commit message checks Fixes: https://github.com/nodejs/node/issues/24567 --- tools/lint-pr-commit-message.sh | 28 +++++++++++----------------- 1 file changed, 11 insertions(+), 17 deletions(-) diff --git a/tools/lint-pr-commit-message.sh b/tools/lint-pr-commit-message.sh index 1998026a16ae39..0bc873fc5b8d3b 100644 --- a/tools/lint-pr-commit-message.sh +++ b/tools/lint-pr-commit-message.sh @@ -25,21 +25,15 @@ if [ -z "${PR_ID}" ]; then echo " e.g. $0 " exit 1 fi -# Retrieve the first commit of the pull request via GitHub API -# TODO: If we teach core-validate-commit to ignore "fixup!" and "squash!" -# commits and lint messages for all commits in the pull request -# we could simplify the following to: -# npx -q core-validate-commit --no-validate-metadata ${GH_API_URL}/repos/nodejs/node/pulls/${PR_ID}/commits -if PR_COMMITS="$( curl -s ${GH_API_URL}/repos/nodejs/node/pulls/${PR_ID}/commits )"; then - if FIRST_COMMIT="$( node -p 'JSON.parse(process.argv[1])[0].url' "${PR_COMMITS}" 2> /dev/null )"; then - echo "Linting the first commit message for pull request ${PR_ID}" - echo "according to the guidelines at https://goo.gl/p2fr5Q." - # Print the commit message to make it more obvious what is being checked. - echo "Commit message for ${FIRST_COMMIT##*/} is:" - node -p 'JSON.parse(process.argv[1])[0].commit.message' "${PR_COMMITS}" 2> /dev/null - npx -q core-validate-commit --no-validate-metadata "${FIRST_COMMIT}" - else - echo "Unable to determine the first commit for pull request ${PR_ID}." - exit 1 - fi + +PATCH=$( curl -sL https://github.com/nodejs/node/pull/${PR_ID}.patch | grep '^From \|^Subject: ' ) +if FIRST_COMMIT="$( echo "$PATCH" | awk '/^From [0-9a-f]{40} / { if (count++ == 0) print $2 }' )"; then + MESSAGE=$( echo "$PATCH" | awk '/^Subject: \[PATCH 1/ { gsub(/^Subject: \[PATCH[^\]]*\] /, ""); print }' ) + echo " +*** Linting the first commit message for pull request ${PR_ID} +*** according to the guidelines at https://goo.gl/p2fr5Q. +*** Commit message for $(echo $FIRST_COMMIT | cut -c 1-10) is: + ${MESSAGE} +" + npx -q core-validate-commit --no-validate-metadata "${FIRST_COMMIT}" fi