prevent PR from triggering push

This commit is contained in:
CatDeployed 2018-05-26 20:03:02 -04:00
parent a7ef0fe512
commit 0395489ef6

View File

@ -1,10 +1,15 @@
version: 2
jobs:
build:
machine: true
steps:
- checkout
- run: docker build -t postal:latest .
build:
machine: true
steps:
- checkout
- run:
name: Build Postal Docker Container
command: docker build -t postal:latest .
- run:
name: Skip this job for Pull Requests
command: '[[ -v CIRCLE_PR_NUMBER ]] && circleci step halt || true'
workflows:
version: 2
nightly: