From f2cc11f537f23f600cc72a5e997ab3efc8af79b7 Mon Sep 17 00:00:00 2001 From: cialloo Date: Mon, 6 Oct 2025 14:37:01 +0800 Subject: [PATCH] Update CI/CD workflows to trigger on master branch instead of dev --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 217ae52..6a1d08d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -11,7 +11,7 @@ on: types: - completed branches: - - dev + - master workflow_dispatch: # Environment variables available to all jobs diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7aa469..4c495f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,14 +1,14 @@ # Continuous Integration Workflow # This workflow builds and pushes Docker images to your private registry -# Trigger: Push to dev branch or manual dispatch +# Trigger: Push to master branch or manual dispatch name: CI - Build and Push -# Trigger configuration - automatic on dev push, manual dispatch available +# Trigger configuration - automatic on master push, manual dispatch available on: push: branches: - - dev + - master workflow_dispatch: # Environment variables available to all jobs