Fix race conditions in mkdocs.yml file watcher callback #119
Workflow file for this run
This file contains hidden or 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: Conventional Commits | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| commit-lint: | |
| name: Verify Conventional Commits | |
| # Skip this job if this is a release or dependabot PR | |
| if: (github.event_name == 'pull_request' && !startsWith(github.event.pull_request.head.ref, 'release-please--') && github.actor != 'dependabot[bot]') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: { fetch-depth: 0 } | |
| - name: Check Commit Messages | |
| uses: wagoid/commitlint-github-action@v6 | |
| with: { configFile: .commitlintrc.yml } |