From 9a64d5b45744dd55c3a27ecb87ef0866655cc4a0 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Tue, 30 Sep 2025 22:15:23 +0200 Subject: [PATCH] fix(ci): adapt commitlint --- .gitea/workflows/commitlint.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/commitlint.yml b/.gitea/workflows/commitlint.yml index b526bba..64570d5 100644 --- a/.gitea/workflows/commitlint.yml +++ b/.gitea/workflows/commitlint.yml @@ -1,19 +1,17 @@ -name: commitlint +name: Rum commitlint on: pull_request: - branches: - - "*" - types: - - opened - - edited + branches: [ '**' ] + types: [ "opened", "edited" ] jobs: check-and-test: - runs-on: ubuntu-latest container: commitlint/commitlint:19.9.1 + name: Execute commitlint + runs-on: docker.io/ubuntu-latest steps: - uses: actions/checkout@v5 - - name: check PR title + - name: Check PR title run: | echo "${{ gitea.event.pull_request.title }}" | commitlint --config .commitlintrc.json