Fix ignoring docs changes in GitHub Actions CI builds

The path expression must match the full path, not just be its prefix.

Co-Authored-By: PB <PBfordev@gmail.com>
This commit is contained in:
Vadim Zeitlin 2021-02-05 21:35:51 +01:00
parent 93160b9667
commit b90cca5103

View file

@ -6,18 +6,18 @@ on:
branches:
- master
paths-ignore:
- 'distrib'
- 'docs'
- 'interface'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- '*.md'
- '*.yml'
pull_request:
branches:
- master
paths-ignore:
- 'distrib'
- 'docs'
- 'interface'
- 'distrib/**'
- 'docs/**'
- 'interface/**'
- '*.md'
- '*.yml'