Luís Murta 76196661ac
Some checks failed
Lint PR / Validate PR title (pull_request) Failing after 47s
Go / build (1.22) (pull_request) Successful in 37s
Go / build (1.23) (pull_request) Failing after 20s
Go / build (1.24) (pull_request) Failing after 13s
fixup! ci: add action-semantic-pull-request
2025-06-21 18:40:53 +01:00

22 lines
491 B
YAML

name: Lint PR
on:
pull_request:
branches: ["main"]
jobs:
commitlint:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- run: npm install -D @commitlint/cli @commitlint/config-conventional
- run: npx commitlint --from ${{ gitea.event.pull_request.base.sha }} --to ${{ gitea.event.pull_request.head.sha }} --verbose