diff --git a/.github/workflows/deploy-stg-ecs.yml b/.github/workflows/deploy-stg-ecs.yml index 1b5c34109d..9d7a926102 100644 --- a/.github/workflows/deploy-stg-ecs.yml +++ b/.github/workflows/deploy-stg-ecs.yml @@ -3,7 +3,7 @@ on: branches: - "main" - "integration" - - "DOP-4414" + - "DOP-4401" concurrency: group: environment-stg-${{ github.ref }} cancel-in-progress: true diff --git a/src/job/jobHandler.ts b/src/job/jobHandler.ts index dbd9b67182..21e2cb0f44 100644 --- a/src/job/jobHandler.ts +++ b/src/job/jobHandler.ts @@ -156,6 +156,10 @@ export abstract class JobHandler { const mutPrefix = pathPrefix.split(`/${server_user}`)[0]; this.currJob.payload.mutPrefix = mutPrefix; } + //add second part of conditional for jobtype check + if (this.currJob.payload.newHead) { + this.currJob.payload.mutPrefix += this.currJob.payload.newHead; + } } @throwIfJobInterupted()