Ignore dependency prs in circle fixes #3021 (#3022)

* Ignore dependency prs in circle fixes #3021

* Circle syntax error

* Ah it needs to match the source branch using a regex
This commit is contained in:
Jared Lockhart 2020-07-10 17:31:33 -04:00 коммит произвёл GitHub
Родитель 677b60f340
Коммит d8a6297031
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -70,12 +70,18 @@ workflows:
version: 2 version: 2
build: build:
jobs: jobs:
- build - build:
name: build
filters:
branches:
ignore: /dependabot.*/
- integration: - integration:
name: integration name: integration
filters: filters:
branches: branches:
ignore: main ignore:
- main
- /dependabot.*/
- deploy: - deploy:
requires: requires:
- build - build