From 5455d57bed7f7a45dbc3cb406fceee3efe860b48 Mon Sep 17 00:00:00 2001 From: lekss361 Date: Sat, 16 May 2026 08:26:04 +0000 Subject: [PATCH] chore(ci): run CI on push to feature branches (#195) --- .github/workflows/ci.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 936cfd83..a2c3ed7e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,10 +2,23 @@ name: CI on: push: - branches: [main] + branches: + - main + - 'feat/**' + - 'fix/**' + - 'refactor/**' + - 'chore/**' + - 'docs/**' + - 'perf/**' + - 'test/**' + - 'hotfix/**' pull_request: branches: [main] +concurrency: + group: ci-${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: backend: runs-on: ubuntu-latest