Skip to content

Commit

Permalink
ci: adjust branch filters
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Jul 13, 2018
1 parent 0835281 commit 951e17e
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ defaults: &defaults
working_directory: ~/project/vue
docker:
- image: vuejs/ci
branches:
ignore:

workflow_filters: &filters
filters:
branches:
ignore:
- docs

jobs:
Expand Down Expand Up @@ -76,19 +79,25 @@ workflows:
version: 2
test:
jobs:
- install
- install:
<<: *filters
- group-1:
<<: *filters
requires:
- install
- group-2:
<<: *filters
requires:
- install
- group-3:
<<: *filters
requires:
- install
- group-4:
<<: *filters
requires:
- install
- cli-ui:
<<: *filters
requires:
- install

0 comments on commit 951e17e

Please sign in to comment.