Skip to content

Commit

Permalink
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .circleci/dynamic_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,9 @@ jobs:
workflows:
version: 2
default_workflow:
when:
not:
equal: [scheduled_pipeline, << pipeline.trigger_source >>]
jobs:
# Linux jobs
- setup
Expand Down Expand Up @@ -485,3 +488,21 @@ workflows:
<<: *only_pull_requests
requires:
- build

daily_run_workflow:
when:
and:
- equal: [scheduled_pipeline, << pipeline.trigger_source >>]
- equal: ['14.2.x nightly run', << pipeline.schedule.name >>]
jobs:
- setup
- build:
requires:
- setup
- e2e-tests:
name: e2e-cli-nightly
requires:
- build
- test-browsers:
requires:
- build

0 comments on commit 31e8a58

Please sign in to comment.