From 630fb6c3d0a37712412eab3492fae1fd717849b1 Mon Sep 17 00:00:00 2001 From: Andre Stefanov Date: Fri, 15 May 2026 11:14:22 +0200 Subject: [PATCH 1/2] ci: remove PR title lint job from CI workflow and create separate workflow file --- .github/workflows/ci.yml | 10 ---------- .github/workflows/pr-title-lint.yml | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 10 deletions(-) create mode 100644 .github/workflows/pr-title-lint.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95cb5747..654cfb38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,16 +6,6 @@ on: - '*' jobs: - pr-title-lint: - name: PR Title (Conventional Commits) - runs-on: ubuntu-latest - permissions: - pull-requests: read - steps: - - uses: amannn/action-semantic-pull-request@v6 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - unit-tests: name: Unit Tests runs-on: ubuntu-latest diff --git a/.github/workflows/pr-title-lint.yml b/.github/workflows/pr-title-lint.yml new file mode 100644 index 00000000..fd39c710 --- /dev/null +++ b/.github/workflows/pr-title-lint.yml @@ -0,0 +1,19 @@ +name: PR Title Lint + +on: + pull_request: + types: + - opened + - edited + - reopened + +jobs: + pr-title-lint: + name: PR Title (Conventional Commits) + runs-on: ubuntu-latest + permissions: + pull-requests: read + steps: + - uses: amannn/action-semantic-pull-request@v6 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From b0e2e561703ebc878eceb1cee631c2a746235fdf Mon Sep 17 00:00:00 2001 From: Andre Stefanov Date: Fri, 15 May 2026 11:30:05 +0200 Subject: [PATCH 2/2] ci: add 'develop' branch to PR title lint workflow triggers --- .github/workflows/pr-title-lint.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr-title-lint.yml b/.github/workflows/pr-title-lint.yml index fd39c710..d208d107 100644 --- a/.github/workflows/pr-title-lint.yml +++ b/.github/workflows/pr-title-lint.yml @@ -6,6 +6,8 @@ on: - opened - edited - reopened + branches: + - 'develop' jobs: pr-title-lint: