我的.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
脚本。
答案 0 :(得分:1)
没有内置的方法可以在CircleCI中查看PR的目标/基本分支。您需要创建一个GitHub个人令牌,并使用他们的API编写脚本以实现此目的。