CircleCI:跳过整个工作流程

CircleCI: Skip entire workflow

基本上,如果 不是 拉取请求或某个分支,我会尝试跳过构建,但是我似乎无法跳过作业或如果这失败了,工作流程的一部分,到目前为止,问题是 circleci step halt 在我的管道中什么都不做,示例配置在这里:

version: 2.1

orbs:
  hello: circleci/hello-build@0.0.5

jobs:
  build:
    docker:
      - image: docker:17.05.0-ce-git
    steps:
      - checkout
      - setup_remote_docker
      - run:
          command: |
            if [[ $(echo "$CIRCLE_PULL_REQUEST $CIRCLE_PULL_REQUESTS" | grep -c "pull") -gt 0 ]]; then
              echo "Do stuff if it's a PR"
            else
              echo "Not a PR, Skipping."
              circleci step halt # does nothing
              circleci-agent step halt # does nothing
              exit 0
            fi

workflows:
  "Hello Workflow":
    jobs:
      - hello/hello-build:
          requires:
            - build
          filters:
            branches:
              only:
                - testing
                - /^(?!pull\/).*$/
            tags:
              only:
                - /^pull\/.*$/
      - build:
          filters:
            branches:
              only:
                - testing
                - /^(?!pull\/).*$/
            tags:
              only:
                - /^pull\/.*$/

这不会失败,它适用于拉取请求,但 hello/hello-build 无论如何都会执行,尽管有 circleci step halt 命令。

任何帮助将不胜感激,谢谢!

在他们的论坛中创建一个线程后,这是有效的:https://discuss.circleci.com/t/does-circleci-step-halt-works-with-version-2-1/36674/4

转到帐户设置 -> 个人 API 令牌 -> 新令牌。获得令牌后,转到项目并创建一个新的环境变量,例如 CIRCLE_TOKEN 并将其保存在那里。

然后在config.yml中你可以运行像这样取消当前的工作流程:

curl -X POST https://circleci.com/api/v2/workflow/${CIRCLE_WORKFLOW_ID}/cancel -H 'Accept: application/json' -u '${CIRCLE_TOKEN}:'

然后你会看到这样的东西: