Skip to content

Commit 752e7e4

Browse files
committed
fix(ui): disable feature-engine jobs in UI pipeline
1 parent 73a9c0f commit 752e7e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

engine/.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ stages:
3232

3333
.only_dle_feature: &only_feature
3434
rules:
35-
- if: '$CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH'
35+
- if: $CI_COMMIT_BRANCH && $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH
3636
changes:
3737
- engine/**/*
3838

@@ -357,7 +357,7 @@ build-image-swagger-latest:
357357
when: never
358358
- if: '$CI_PROJECT_NAMESPACE != "postgres-ai"'
359359
when: never
360-
- if: $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH
360+
- if: $CI_COMMIT_BRANCH && $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH
361361
changes:
362362
- engine/**/*
363363
script:

0 commit comments

Comments
 (0)