我可以使用CircleCI运行不同的工作流程来开发合并到主服务器吗?

时间:2018-05-14 15:49:37

标签: circleci

我的.circleci/config.yml是:

# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
  build:
    docker:
      # specify the version you desire here
      - image: circleci/node:8.11.1

    working_directory: ~/repo

    steps:
      - checkout

      - restore_cache:
          keys:
          - v1-dependencies-{{ checksum "package.json" }}
          # fallback to using the latest cache if no exact match is found
          - v1-dependencies-

      - run: yarn install

      - save_cache:
          paths:
            - node_modules
          key: v1-dependencies-{{ checksum "package.json" }}

      # run tests!
      - run:
          command: yarn test
          environment:
            SOME: 'stuff'

这适用于我目前针对develop的功能分支的github。我希望设置另一个工作流程,以便我将develop的PR设置为master。我想用不同的环境变量触发yarn integration脚本。

1 个答案:

答案 0 :(得分:1)

没有内置的方法可以在CircleCI中查看PR的目标/基本分支。您需要创建一个GitHub个人令牌,并使用他们的API编写脚本以实现此目的。