retrieve PR info #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check PR Description and Commit Message Parity | |
on: | |
pull_request: | |
types: [opened, edited, synchronize] | |
jobs: | |
check-parity: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Get PR Information | |
id: get_pr | |
uses: octokit/[email protected] | |
with: | |
route: GET /repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get Commit Messages | |
id: get_commits | |
uses: octokit/[email protected] | |
with: | |
route: GET /repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/commits | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check PR Description and Commit Messages | |
id: check_parity | |
run: | | |
pr_body='${{ steps.get_pr.outputs.data }}' | |
commits='${{ steps.get_commits.outputs.data }}' | |
pr_description=$(echo "$pr_body" | jq -r .body) | |
commit_messages=$(echo "$commits" | jq -r '.[].commit.message' | tr '\n' ' ') | |
if [[ "$pr_description" != "$commit_messages" ]]; then | |
echo "::set-output name=parity_check::fail" | |
exit 1 | |
else | |
echo "::set-output name=parity_check::pass" | |
fi | |
- name: Set Failure if Parity Check Failed | |
if: steps.check_parity.outputs.parity_check == 'fail' | |
run: exit 1 |