Fix ignoring paths for the GitHub CI builds
This was broken in 52d63eedd2 (Don't rerun CI builds for docs-only
changes, 2021-01-28) and no builds were run at all as the result.
This commit is contained in:
parent
0d04792116
commit
7cba593a85
1 changed files with 6 additions and 6 deletions
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
|
@ -5,15 +5,15 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '!docs'
|
||||
- '!interface'
|
||||
paths-ignore:
|
||||
- 'docs'
|
||||
- 'interface'
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '!docs'
|
||||
- '!interface'
|
||||
paths-ignore:
|
||||
- 'docs'
|
||||
- 'interface'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue