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

Commit b2a610b

Browse files
authoredNov 13, 2020
chore(validate): Filter out all-contributors branches (#254)
1 parent 54eec15 commit b2a610b

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed
 

‎.github/workflows/validate.yml

+9-7
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ on:
33
push:
44
branches:
55
[
6-
"+([0-9])?(.{+([0-9]),x}).x",
7-
"master",
8-
"next",
9-
"next-major",
10-
"beta",
11-
"alpha",
6+
'+([0-9])?(.{+([0-9]),x}).x',
7+
'master',
8+
'next',
9+
'next-major',
10+
'beta',
11+
'alpha',
12+
'!all-contributors/**',
1213
]
13-
pull_request: {}
14+
pull_request:
15+
branches-ignore: ['all-contributors/**']
1416
jobs:
1517
main:
1618
strategy:

0 commit comments

Comments
 (0)
This repository has been archived.