Skip to content
This repository has been archived by the owner on Jan 6, 2021. It is now read-only.

Commit

Permalink
chore(validate): Filter out all-contributors branches (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey committed Nov 13, 2020
1 parent 54eec15 commit b2a610b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/validate.yml
Expand Up @@ -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:
Expand Down

0 comments on commit b2a610b

Please sign in to comment.