# This workflow runs on all PRs and ensures they are formatted using Conventional Commits (https://www.conventionalcommits.org/), rejecting any that do not conform to the commit message standards.
name: Commit Lint
on:
permissions:
contents: read
pull-requests: read
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: wagoid/commitlint-github-action@v6
with:
configFile: .commitlint.config.mjs