Skip to content

This adds a commit message checker, which should fail on this commit … #6

This adds a commit message checker, which should fail on this commit …

This adds a commit message checker, which should fail on this commit … #6

Workflow file for this run

name: Commit messages check
on:
pull_request:
jobs:
gitlint:
name: Check commit messages
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v3
- name: Install dependencies
run: |
pip install --upgrade gitlint
- name: Lint git commit messages
run: |
gitlint --commits origin/$GITHUB_BASE_REF..