This makes it easier for contributors. They don't need to update the branch itself by e.g. empty commits. However, it now triggers the commitlint even when the PR description is updated. Solution inspired by https://github.com/orgs/community/discussions/48695 and https://github.com/orgs/community/discussions/101695. Signed-off-by: justusbunsi <sk.bunsenbrenner@gmail.com> Reviewed-on: https://gitea.com/gitea/helm-chart/pulls/804 Reviewed-by: pat-s <pat-s@noreply.gitea.com> Co-authored-by: justusbunsi <sk.bunsenbrenner@gmail.com> Co-committed-by: justusbunsi <sk.bunsenbrenner@gmail.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.7.1
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: check PR title
|
|
run: |
|
|
echo "${{ gitea.event.pull_request.title }}" | commitlint --config .commitlintrc.json
|