You've already forked helm-gitea

Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/928 Reviewed-by: techknowlogick <techknowlogick@noreply.gitea.com> Co-authored-by: Renovate Bot <renovate-bot@gitea.com> Co-committed-by: Renovate Bot <renovate-bot@gitea.com>
20 lines
386 B
YAML
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:19.9.1
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: check PR title
|
|
run: |
|
|
echo "${{ gitea.event.pull_request.title }}" | commitlint --config .commitlintrc.json
|