Files
helm-gitea/.gitea/workflows/commitlint.yml
2025-12-04 16:33:30 +00:00

20 lines
386 B
YAML

name: commitlint
on:
pull_request:
branches:
- "*"
types:
- opened
- edited
jobs:
check-and-test:
runs-on: ubuntu-latest
container: commitlint/commitlint:20.1.0
steps:
- uses: actions/checkout@v6
- name: check PR title
run: |
echo "${{ gitea.event.pull_request.title }}" | commitlint --config .commitlintrc.json