diff --git a/.circleci/config.yml b/.circleci/config.yml index c0fd943aea..fbb452ccd4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -831,20 +831,20 @@ jobs: - run: .circleci/scripts/cherry-picker.sh - run: *notify-slack-failure -trigger-oss-merge: - docker: - - image: alpine:3.11 - steps: - - run: apk add --no-cache --no-progress curl jq - - run: - name: trigger oss merge - command: | - curl -s -X POST \ - --header "Circle-Token: ${CIRCLECI_API_TOKEN}" \ - --header "Content-Type: application/json" \ - -d '{"build_parameters": {"CIRCLE_JOB": "oss-merge"}}' \ - "https://circleci.com/api/v1.1/project/github/hashicorp/consul-enterprise/tree/${CIRCLE_BRANCH}" | jq -r '.build_url' - - run: *notify-slack-failure + trigger-oss-merge: + docker: + - image: alpine:3.11 + steps: + - run: apk add --no-cache --no-progress curl jq + - run: + name: trigger oss merge + command: | + curl -s -X POST \ + --header "Circle-Token: ${CIRCLECI_API_TOKEN}" \ + --header "Content-Type: application/json" \ + -d '{"build_parameters": {"CIRCLE_JOB": "oss-merge"}}' \ + "https://circleci.com/api/v1.1/project/github/hashicorp/consul-enterprise/tree/${CIRCLE_BRANCH}" | jq -r '.build_url' + - run: *notify-slack-failure workflows: version: 2