From 5a0c5cbd62fe248545ca1afea4b7f1493e884a8f Mon Sep 17 00:00:00 2001 From: borislavr Date: Wed, 15 Oct 2025 11:49:31 +0000 Subject: [PATCH] feat(ci): enforce conventional commits in PR titles Related issue: https://github.com/Netcracker/qubership-workflow-hub/issues/432 --- .../workflows/pr-conventional-commits.yaml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pr-conventional-commits.yaml diff --git a/.github/workflows/pr-conventional-commits.yaml b/.github/workflows/pr-conventional-commits.yaml new file mode 100644 index 0000000..1056dc9 --- /dev/null +++ b/.github/workflows/pr-conventional-commits.yaml @@ -0,0 +1,23 @@ +--- + +name: Conventional Commits PR Check + +on: + pull_request: + types: + - opened + - edited + - synchronize + +permissions: + pull-requests: read +jobs: + build: + name: Conventional Commits + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0 + with: + persist-credentials: false + + - uses: webiny/action-conventional-commits@8bc41ff4e7d423d56fa4905f6ff79209a78776c7 #v1.3.0