From bdeb0298f2a926036d53e3f4a0346d3175354345 Mon Sep 17 00:00:00 2001 From: Trezy Date: Tue, 18 Dec 2018 09:07:08 -0600 Subject: [PATCH 1/2] fix: Ignore `commitlint` when merging to `master` --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index ff3dc8d..8e0856f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -171,6 +171,9 @@ workflows: jobs: - checkout - commitlint + filters: + branches: + ignore: master - install-dependencies: requires: - checkout From e83dfce95ae3c37c5c81d8860beb2339646065a0 Mon Sep 17 00:00:00 2001 From: Trezy Date: Tue, 18 Dec 2018 09:11:22 -0600 Subject: [PATCH 2/2] fix: Fix ci config syntax --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8e0856f..95b25fd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -170,7 +170,7 @@ workflows: main: jobs: - checkout - - commitlint + - commitlint: filters: branches: ignore: master