From 13c359027a6b6655e353e59380527a1d5ecaaee8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Thu, 12 Nov 2020 13:44:17 +0100 Subject: [PATCH] chore(validate): Filter out all-contributors branches --- .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: