From d1f2e2399bbcc0ba3b7669fa4ed79e96d28a02de Mon Sep 17 00:00:00 2001 From: Slava <20563034+veaceslavdoina@users.noreply.github.com> Date: Tue, 12 Aug 2025 11:51:41 +0300 Subject: [PATCH] ci: validate pr title to adhere conventional commits (#1254) --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4cfa6a5..6603aab7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,15 @@ concurrency: cancel-in-progress: true jobs: + pr-title: + runs-on: ubuntu-latest + if: github.event_name == 'pull_request' + steps: + - name: PR Conventional Commit Validation + uses: ytanikin/pr-conventional-commits@1.4.1 + with: + task_types: '["feat","fix","docs","test","ci","build","refactor","style","perf","chore","revert"]' + matrix: runs-on: ubuntu-latest outputs: