tet123/.github/workflows/sanity-check.yml

23 lines
896 B
YAML
Raw Normal View History

2020-06-26 16:14:35 +02:00
name: Commit message format check
on:
pull_request_target:
branches: [ master ]
jobs:
build:
name: Commit message
runs-on: ubuntu-latest
steps:
- name: Commit messages in format DBZ-xxx
env:
BASE_REF: ${{ github.base_ref }}
run: |
! git log --format='format:%s' refs/remotes/origin/$BASE_REF.. | tail -n +2 | grep -Ev '^(DBZ-[[:digit:]]+)|(\[release\])|(\[jenkins-jobs\]|(\[docs\]) '
- name: Create Comment
if: ${{ failure() }}
uses: peter-evans/create-or-update-comment@v1
with:
issue-number: ${{ github.event.pull_request.number }}
body: |
Hi @${{ github.event.pull_request.user.login }}, thanks for your contribution. Please prefix the commit message(s) with the [DBZ-xxx JIRA issue key](https://github.com/debezium/debezium/blob/master/CONTRIBUTE.md#making-changes).