DBZ-4047 Fix commit message action for multi-line commits (#2732)

* DBZ-4047 Fix commit message action for multi-line commits

Co-authored-by: René Kerner, rk3rn3r
closes https://issues.redhat.com/browse/DBZ-4047
This commit is contained in:
Anisha Mohanty 2021-09-28 19:52:24 +05:30 committed by GitHub
parent 11d1a95f56
commit faf2d241b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,13 +16,24 @@ jobs:
env:
pull_request_number: ${{ github.event.pull_request.number }}
run: |
curl --silent -X "GET" https://api.github.com/repos/debezium/debezium/pulls/$pull_request_number/commits | jq '.[] | {message: .commit.message}' | jq -r '.message' >> COMMIT_MESSAGE.txt
while IFS=" " read -r MSG;
COMMIT_MSGS=$(curl --silent -X "GET" https://api.github.com/repos/debezium/debezium/pulls/$pull_request_number/commits | jq '.[] | {message: .commit.message}' | jq '.message' | cut -c 2-)
NON_PREFIX_COMMITS=""
while IFS= read -r line ;
do
if [[ ! $MSG =~ (^DBZ-[[:digit:]]+)|(\[release\])|(\[jenkins-jobs\])|(\[docs\]) ]]; then
echo "::set-output name=PREFIX::false"
line=${line%\"}
echo "-> checking: $line"
if [[ ! $line =~ (^DBZ-[[:digit:]]+)|(\[release\])|(\[jenkins-jobs\])|(\[docs\]) ]]; then
NON_PREFIX_COMMITS="${NON_PREFIX_COMMITS} -> ${line} \n"
fi
done < COMMIT_MESSAGE.txt
done <<< "$COMMIT_MSGS"
if [[ $NON_PREFIX_COMMITS != "" ]]; then
echo "========================================================================"
echo " COMMIT MESSAGES WITH MISSING \"DBZ\" PREFIX"
echo "========================================================================"
echo -e "$NON_PREFIX_COMMITS"
echo "::set-output name=PREFIX::false"
fi
- name: Create Comment
if: ${{ steps.check.outputs.PREFIX == 'false' }}
uses: peter-evans/create-or-update-comment@v1