Skip to content

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.circleci/dynamic_config.yml

+21
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,9 @@ jobs:
385385
workflows:
386386
version: 2
387387
default_workflow:
388+
when:
389+
not:
390+
equal: [scheduled_pipeline, << pipeline.trigger_source >>]
388391
jobs:
389392
# Linux jobs
390393
- setup
@@ -485,3 +488,21 @@ workflows:
485488
<<: *only_pull_requests
486489
requires:
487490
- build
491+
492+
daily_run_workflow:
493+
when:
494+
and:
495+
- equal: [scheduled_pipeline, << pipeline.trigger_source >>]
496+
- equal: ['14.2.x nightly run', << pipeline.schedule.name >>]
497+
jobs:
498+
- setup
499+
- build:
500+
requires:
501+
- setup
502+
- e2e-tests:
503+
name: e2e-cli-nightly
504+
requires:
505+
- build
506+
- test-browsers:
507+
requires:
508+
- build

0 commit comments

Comments
 (0)