fix: add catch-all block_actions handler to prevent unhandled 404s #1
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: Lint Commits | |
| # Validates that every commit in a PR follows Conventional Commits | |
| # (lowercase types: feat / fix / docs / refactor / chore / ...). This keeps | |
| # the history parseable by python-semantic-release so version bumps are | |
| # computed correctly. Merge commits are ignored by the linter. | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| commitlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # need the full PR commit range to lint each commit | |
| - name: Lint commit messages | |
| uses: wagoid/commitlint-github-action@v6 | |
| with: | |
| configFile: commitlint.config.mjs |