Skip to content
This repository was archived by the owner on Apr 28, 2026. It is now read-only.

build(deps): bump actions/checkout from 4 to 6 #83

build(deps): bump actions/checkout from 4 to 6

build(deps): bump actions/checkout from 4 to 6 #83

Workflow file for this run

name: Commit Lint
on: [ pull_request ]
jobs:
gitlint:
name: Check commit messages
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade gitlint
- name: Lint git commit messages
run: |
gitlint --commits origin/$GITHUB_BASE_REF..