summaryrefslogtreecommitdiffstats
path: root/.github/workflows/commit-lint.yml
blob: 309d637dc38b0bfc0eaaf6175780f08d6c39b5ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
on:
  pull_request:

name: Pull Request Checks

jobs:
  commit-lint:
    runs-on: ubuntu-latest
    if: github.event_name == 'pull_request'
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 0
      - uses: actions/setup-python@v4
        with:
          python-version: '3.x'
      - run: pip install gitlint
      - run: gitlint --commits $(git merge-base origin/master HEAD)..HEAD