���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/home/real/node-v13.0.1/tools/ |
#!/usr/bin/env bash # Shell script to lint the message of the first commit in a pull request. # # Depends on curl, git, node, npm and npx being in $PATH. # # The pull request is either: # 1) supplied as an argument to this shell script # 2) derived from the HEAD commit via the GitHub API GH_API_URL="https://api.github.com" PR_ID=$1; if [ -z "${PR_ID}" ]; then # Attempt to work out the PR number based on current HEAD if HEAD_COMMIT="$( git rev-parse HEAD )"; then if SEARCH_RESULTS="$( curl -s ${GH_API_URL}/search/issues?q=sha:${HEAD_COMMIT}+type:pr+repo:nodejs/node )"; then if FOUND_PR="$( node -p 'JSON.parse(process.argv[1]).items[0].number' "${SEARCH_RESULTS}" 2> /dev/null )"; then PR_ID=${FOUND_PR} fi fi fi fi if [ -z "${PR_ID}" ]; then echo "Unable to determine the pull request number to check. Please specify, " echo " e.g. $0 <PR_NUMBER>" exit 1 fi PATCH=$( curl -sL https://github.com/nodejs/node/pull/${PR_ID}.patch | grep '^From ' ) if FIRST_COMMIT="$( echo "$PATCH" | awk '/^From [0-9a-f]{40} / { if (count++ == 0) print $2 }' )"; then MESSAGE=$( git show --quiet --format='format:%B' $FIRST_COMMIT ) 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