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

chore(validate): Filter out all-contributors branches #254

Merged
merged 1 commit into from Nov 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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