mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-18 03:23:37 +08:00
Fix ignored workflow logic
The paths filter in github workflows will trigger when at least one of the pathes match unless everything else has been explicitly excluded. For the ignored workflows we want it to only trigger when only those files explicitly specified are changed and nothing else.
This commit is contained in:
parent
6e5d687184
commit
9dc699a59b
@ -5,13 +5,15 @@ name: Regression Linux i386
|
||||
"on":
|
||||
push:
|
||||
branches:
|
||||
- prerelease_test
|
||||
- main
|
||||
paths:
|
||||
- '!**'
|
||||
- '**.md'
|
||||
- 'LICENSE*'
|
||||
- NOTICE
|
||||
pull_request:
|
||||
paths:
|
||||
- '!**'
|
||||
- '**.md'
|
||||
- 'LICENSE*'
|
||||
- NOTICE
|
||||
|
@ -5,13 +5,15 @@ name: Regression
|
||||
"on":
|
||||
push:
|
||||
branches:
|
||||
- prerelease_test
|
||||
- main
|
||||
paths:
|
||||
- '!**'
|
||||
- '**.md'
|
||||
- 'LICENSE*'
|
||||
- NOTICE
|
||||
pull_request:
|
||||
paths:
|
||||
- '!**'
|
||||
- '**.md'
|
||||
- 'LICENSE*'
|
||||
- NOTICE
|
||||
|
8
.github/workflows/shellcheck-ignored.yaml
vendored
8
.github/workflows/shellcheck-ignored.yaml
vendored
@ -3,13 +3,13 @@
|
||||
# executed because some files were ignored.
|
||||
name: Shellcheck
|
||||
"on":
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths-ignore:
|
||||
- '**.sh'
|
||||
- .github/workflows/shellcheck.yaml
|
||||
push:
|
||||
branches:
|
||||
- prerelease_test
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '**.sh'
|
||||
- .github/workflows/shellcheck.yaml
|
||||
|
@ -5,8 +5,9 @@ name: Regression Windows
|
||||
"on":
|
||||
push:
|
||||
branches:
|
||||
- prerelease_test
|
||||
- main
|
||||
paths:
|
||||
- '!**'
|
||||
- '**.md'
|
||||
- CHANGELOG
|
||||
- 'LICENSE*'
|
||||
@ -14,6 +15,7 @@ name: Regression Windows
|
||||
- 'bootstrap*'
|
||||
pull_request:
|
||||
paths:
|
||||
- '!**'
|
||||
- '**.md'
|
||||
- CHANGELOG
|
||||
- 'LICENSE*'
|
||||
|
Loading…
x
Reference in New Issue
Block a user