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]