From 87b93fff8cdb65d387daaf5f0ba82c202ee2e108 Mon Sep 17 00:00:00 2001 From: Fang Lin Date: Fri, 11 Aug 2023 12:10:36 -0700 Subject: [PATCH] deploy to test --- .github/workflows/cicd.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index b58a3bed9..71e14a7a8 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -40,9 +40,9 @@ env: # defined in the "deploy" job on: push: - branches: [main, master, qa, develop, vue/dev] + branches: [main, master, f/db-cleanup, develop, vue/dev] pull_request: - branches: [main, master, qa, develop, vue/dev] + branches: [main, master, f/db-cleanup, develop, vue/dev] types: [opened, reopened, synchronize] jobs: @@ -269,7 +269,7 @@ jobs: - name: Deployment Pipeline if: >- - contains(fromJSON('["main", "master", "qa"]'), + contains(fromJSON('["main", "master", "f/db-cleanup"]'), needs.context.outputs.git_repo_branch) uses: uw-it-aca/actions/cicd-deploy@main with: @@ -306,7 +306,7 @@ jobs: housekeeping: if: github.event_name == 'push' && (endsWith(github.ref, '/main') || endsWith(github.ref, '/master') || - endsWith(github.ref, '/qa') || endsWith(github.ref, '/develop') || + endsWith(github.ref, '/f/db-cleanup') || endsWith(github.ref, '/develop') || endsWith(github.ref, '/vue/dev')) needs: [context, build, deploy]