Luís Murta 65591b380b
Some checks failed
Go / build (1.22) (pull_request) Successful in 13s
Go / build (1.23) (pull_request) Successful in 21s
Lint PR / commitlint (pull_request) Failing after 25s
Go / build (1.24) (pull_request) Successful in 20s
fixup! ci: add action-semantic-pull-request
2025-06-21 19:28:21 +01:00

27 lines
560 B
YAML

name: Lint PR
on:
pull_request:
branches: ["main"]
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm install -g @commitlint/config-conventional
- run: >-
npx commitlint
-g .github/workflows/commitlint.config.js
--from ${{ gitea.event.pull_request.base.sha }}
--to ${{ gitea.event.pull_request.head.sha }}
--verbose