Skip to content

Commit 0538d08

Browse files
committed
fix filter
1 parent 029f343 commit 0538d08

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/integration-in-memory-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
4444
id: changes
4545
with:
46+
# This is a valid input, see https://github.com/dorny/paths-filter/pull/226
4647
predicate-quantifier: "every"
4748
filters: |
4849
changes:

.github/workflows/integration-tests.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ jobs:
108108
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
109109
id: changes
110110
with:
111+
# This is a valid input, see https://github.com/dorny/paths-filter/pull/226
111112
predicate-quantifier: "every"
112113
filters: |
113114
general_changes:
@@ -118,19 +119,21 @@ jobs:
118119
- 'GNUmakefile'
119120
- 'core/chainlink.Dockerfile'
120121
- 'plugins/chainlink.Dockerfile'
121-
core_changes: &core_changes
122+
base_changes: &base_changes
122123
- '**/*.go'
123124
- '**/*go.sum'
124125
- '**/*go.mod'
125126
- '**/*Dockerfile'
126-
- '!system-tests/**'
127-
- '!devenv/**'
128-
- '!core/scripts/cre/**'
129127
- 'core/**/migrations/*.sql'
130128
- 'core/**/config/**/*.toml'
131129
- 'integration-tests/**/*.toml'
130+
core_changes:
131+
- *base_changes
132+
- '!system-tests/**'
133+
- '!devenv/**'
134+
- '!core/scripts/cre/**'
132135
cre_changes:
133-
- *core_changes
136+
- *base_changes
134137
- 'core/scripts/cre/**'
135138
- 'system-tests/**'
136139
- 'plugins/plugins.private.yaml'

0 commit comments

Comments
 (0)