From f68b4fbbf1eeafd1cee6f04917b6dfa2104f1ef9 Mon Sep 17 00:00:00 2001 From: Aleksandr Meshchriakov Date: Mon, 2 Feb 2026 12:49:06 +0100 Subject: [PATCH] fix(ci): add dev branch to CI workflow triggers --- .gitea/workflows/ci-cd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci-cd.yml b/.gitea/workflows/ci-cd.yml index 7560bce..714b26c 100644 --- a/.gitea/workflows/ci-cd.yml +++ b/.gitea/workflows/ci-cd.yml @@ -2,9 +2,9 @@ name: CI/CD Pipeline on: push: - branches: [ main, develop ] + branches: [ main, develop, dev ] pull_request: - branches: [ main, develop ] + branches: [ main, develop, dev ] env: PYTHON_VERSION: "3.11" @@ -105,7 +105,7 @@ jobs: name: Push to Gitea Registry runs-on: ubuntu-latest needs: [build] - if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' + if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/dev' steps: - name: Checkout code