Run callbacks on request cancellation #1866
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
name: gitlint | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
gitlint: | |
runs-on: ubuntu-latest | |
container: | |
image: jorisroovers/gitlint:0.19.1 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run gitlint | |
run: | | |
git config --global --add safe.directory $GITHUB_WORKSPACE | |
gitlint --commits origin/$GITHUB_BASE_REF.. |