Chore: Update pre-commit hooks #189
Workflow file for this run
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
--- | |
# SPDX-FileCopyrightText: 2021 Andrew Grimberg <tykeal@bardicgrove.org> | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Gitlint | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
jobs: | |
gitlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
with: | |
# Check out at the last commit (pre-automated merge, we don't care | |
# about the temporary commit for linting) | |
ref: ${{ github.event.pull_request.head.sha }} | |
# Get all history | |
fetch-depth: 0 | |
- name: Install gitlint | |
shell: bash | |
run: | | |
python -m pip install gitlint | |
- name: Run gitlint | |
shell: bash | |
run: | | |
# Lint everything from the base to the latest | |
gitlint --commits "${{ github.event.pull_request.base.sha }}..HEAD" |