Skip to content

Commit f890d2d

Browse files
committed
fix regression skipping
1 parent 9d9f9e1 commit f890d2d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release_branches.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ jobs:
487487
#############################################################################################
488488
RegressionTestsRelease:
489489
needs: [RunConfig, BuilderDebRelease]
490-
if: ${{ !failure() && !cancelled() && !contains(fromJson(needs.RunConfig.outputs.data).ci_settings.exclude_keywords, 'regression')}}
490+
if: ${{ !failure() && !cancelled() && !contains(fromJson(needs.RunConfig.outputs.data).ci_options.exclude_keywords, 'regression')}}
491491
uses: ./.github/workflows/regression.yml
492492
secrets: inherit
493493
with:
@@ -498,7 +498,7 @@ jobs:
498498
timeout_minutes: 300
499499
RegressionTestsAarch64:
500500
needs: [RunConfig, BuilderDebAarch64]
501-
if: ${{ !failure() && !cancelled() && !contains(fromJson(needs.RunConfig.outputs.data).ci_settings.exclude_keywords, 'regression') && !contains(fromJson(needs.RunConfig.outputs.data).ci_settings.exclude_keywords, 'aarch64')}}
501+
if: ${{ !failure() && !cancelled() && !contains(fromJson(needs.RunConfig.outputs.data).ci_options.exclude_keywords, 'regression') && !contains(fromJson(needs.RunConfig.outputs.data).ci_options.exclude_keywords, 'aarch64')}}
502502
uses: ./.github/workflows/regression.yml
503503
secrets: inherit
504504
with:

0 commit comments

Comments
 (0)