diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index b58a3bed9..d40a8db1f 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, qa, develop, fix/MUWM-5278] pull_request: - branches: [main, master, qa, develop, vue/dev] + branches: [main, master, qa, develop, fix/MUWM-5278] types: [opened, reopened, synchronize] jobs: @@ -289,7 +289,7 @@ jobs: app_instance: dev - name: Deploy Vue Branch - if: needs.context.outputs.git_repo_branch == 'vue/dev' + if: needs.context.outputs.git_repo_branch == 'fix/MUWM-5278' uses: uw-it-aca/actions/cicd-deploy@main with: release_name: ${{ env.RELEASE_NAME }} @@ -307,7 +307,7 @@ jobs: if: github.event_name == 'push' && (endsWith(github.ref, '/main') || endsWith(github.ref, '/master') || endsWith(github.ref, '/qa') || endsWith(github.ref, '/develop') || - endsWith(github.ref, '/vue/dev')) + endsWith(github.ref, '/fix/MUWM-5278')) needs: [context, build, deploy]