We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2a610b commit 07a91d6Copy full SHA for 07a91d6
.github/workflows/validate.yml
@@ -2,19 +2,18 @@ name: validate
2
on:
3
push:
4
branches:
5
- [
6
- '+([0-9])?(.{+([0-9]),x}).x',
7
- 'master',
8
- 'next',
9
- 'next-major',
10
- 'beta',
11
- 'alpha',
12
- '!all-contributors/**',
13
- ]
14
- pull_request:
15
- branches-ignore: ['all-contributors/**']
+ - '+([0-9])?(.{+([0-9]),x}).x'
+ - 'master'
+ - 'next'
+ - 'next-major'
+ - 'beta'
+ - 'alpha'
+ - '!all-contributors/**'
+ pull_request: {}
16
jobs:
17
main:
+ # ignore all-contributors PRs
+ if: ${{ !contains(github.head_ref, 'all-contributors') }}
18
strategy:
19
matrix:
20
os: [ubuntu-latest, windows-latest]
0 commit comments