diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 04b9ff165..9a45609de 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -43,9 +43,9 @@ env: # defined in the "deploy" job on: push: - branches: [main, master, qa, develop, vue/dev] + branches: [main, master, feat/MUWM-5395, develop, vue/dev] pull_request: - branches: [main, master, qa, develop, vue/dev] + branches: [main, master, feat/MUWM-5395, develop, vue/dev] types: [opened, reopened, synchronize] release: branches: [main, master] @@ -284,7 +284,7 @@ jobs: - name: Deployment Pipeline if: >- - contains(fromJSON('["main", "master", "qa"]'), + contains(fromJSON('["main", "master", "feat/MUWM-5395"]'), needs.context.outputs.git_repo_branch) uses: uw-it-aca/actions/cicd-deploy@main with: @@ -321,7 +321,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, '/feat/MUWM-5395') || endsWith(github.ref, '/develop') || endsWith(github.ref, '/vue/dev')) needs: [context, build, deploy]