From b2a610b121a1b60162b868bd26b6fe5bb104f82d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Fri, 13 Nov 2020 18:14:03 +0100 Subject: [PATCH] chore(validate): Filter out all-contributors branches (#254) --- .github/workflows/validate.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index d1e822e..e59d861 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -3,14 +3,16 @@ on: push: branches: [ - "+([0-9])?(.{+([0-9]),x}).x", - "master", - "next", - "next-major", - "beta", - "alpha", + '+([0-9])?(.{+([0-9]),x}).x', + 'master', + 'next', + 'next-major', + 'beta', + 'alpha', + '!all-contributors/**', ] - pull_request: {} + pull_request: + branches-ignore: ['all-contributors/**'] jobs: main: strategy: