fix(helpers): include unit name keys with variant suffixes like _NAME_V2 #103
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: Commit Lint | |
| on: | |
| pull_request: | |
| branches: [main, develop] | |
| permissions: | |
| contents: read | |
| jobs: | |
| commitlint: | |
| name: Validate Commit Messages | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install commitlint | |
| run: npm install -g @commitlint/{cli,config-conventional} | |
| - name: Create commitlint config | |
| run: | | |
| cat > .commitlintrc.json << 'EOF' | |
| { | |
| "extends": ["@commitlint/config-conventional"], | |
| "rules": { | |
| "type-enum": [2, "always", [ | |
| "feat", "fix", "refactor", "build", "deps", "bug", | |
| "chore", "docs", "test", "tests", "style", "ci", "perf" | |
| ]], | |
| "scope-enum": [1, "always", [ | |
| "core", "helpers", "client", "auth", "statcalc", | |
| "exceptions", "cache", "defaults", "typing", "hmac", | |
| "version", "deps", "release", "changelog", "ci", | |
| "docs", "tests", "examples", "parity" | |
| ]], | |
| "subject-max-length": [1, "always", 100], | |
| "header-max-length": [0, "always"], | |
| "body-max-line-length": [0, "always"], | |
| "footer-max-line-length": [0, "always"] | |
| } | |
| } | |
| EOF | |
| - name: Validate commits | |
| run: | | |
| set -euo pipefail | |
| git fetch --no-tags --quiet origin main | |
| base="${{ github.event.pull_request.base.sha }}" | |
| head="${{ github.event.pull_request.head.sha }}" | |
| # Lint only the commits this PR actually introduces: exclude merge | |
| # commits and any commit already reachable from main. Mergeback and | |
| # automated back-merge PRs re-introduce main's (sometimes | |
| # non-conventional squash) commits — those are already on main and are | |
| # not this PR's responsibility to police. | |
| commits="$(git rev-list --no-merges --reverse "${base}..${head}" --not FETCH_HEAD)" | |
| if [ -z "${commits}" ]; then | |
| echo "No PR-unique commits to lint (mergeback/back-merge or merge-only PR)." | |
| exit 0 | |
| fi | |
| rc=0 | |
| while read -r sha; do | |
| echo "── ${sha} ──" | |
| git log -1 --format=%B "${sha}" | npx commitlint --verbose || rc=1 | |
| done <<< "${commits}" | |
| exit "${rc}" |