From fde1f14708dfa0b45e0a9c305313db15c7391997 Mon Sep 17 00:00:00 2001 From: Andrey Date: Sun, 25 Jan 2026 15:52:02 +0300 Subject: [PATCH] chore: update CI/CD pipeline configuration for improved branch handling - Renamed the CI/CD pipeline for clarity and consistency. - Updated the branch triggers to include 'dev-*' for better integration of development branches. - Removed the URL setting for the production environment to streamline the deployment process. --- .github/workflows/pipeline.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 2448c17..9326f30 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -1,8 +1,8 @@ -name: CI/CD Pipeline +name: CI & CD pipeline on: push: - branches: [ main, develop, 'feature/**' ] + branches: [ main, 'develop', 'dev-*', 'feature/**' ] pull_request: branches: [ main, develop ] @@ -70,7 +70,6 @@ jobs: if: success() && github.ref == 'refs/heads/main' environment: name: production - url: https://${{ vars.SERVER_HOST || secrets.SERVER_HOST }} steps: - name: Checkout code