File tree Expand file tree Collapse file tree 2 files changed +51
-4
lines changed
services/static-webserver/client/source/class/osparc/data/model Expand file tree Collapse file tree 2 files changed +51
-4
lines changed Original file line number Diff line number Diff line change 1+ queue_rules :
2+ - name : default
3+ branch_protection_injection_mode : merge
4+ queue_conditions :
5+ # general prerequisits fo accept the PR in the queue
6+ - label=🤖-automerge # let Mergify know that the PR can be merged (added manually)
7+ - label!=🤖-do-not-merge # block Mergify from merging the PR (added manually)
8+ - base=master
9+ - -draft # PR is not in draft state
10+ - -conflict # No merge conflicts
11+
12+ # Check for required reviews
13+ - " #approved-reviews-by>=2" # Requires 2 approving reviews
14+ - " #changes-requested-reviews-by=0" # No changes requested
15+ - " #review-threads-unresolved=0" # All review threads resolved
16+
17+ merge_conditions :
18+ # list of CI checks that need to pass
19+ - check-success=unit-tests
20+ - check-success=integration-tests
21+ - check-success=system-tests
22+
23+ pull_request_rules :
24+ - name : update branch if behind master
25+ conditions :
26+ - queue-name=default # only run if already queued
27+ - label=🤖-automerge
28+ - label!=🤖-do-not-merge
29+ - base=master
30+ actions :
31+ update :
32+
33+ - name : retry CI on fails (used for flaky tests)
34+ conditions :
35+ - queue-name=default # only run if already queued
36+ - label=🤖-automerge
37+ - label!=🤖-do-not-merge
38+ - base=master
39+ - or :
40+ - check-failure=unit-tests
41+ - check-failure=integration-tests
42+ - check-failure=system-tests
43+ actions :
44+ github_actions :
45+ workflow :
46+ dispatch :
47+ - workflow : .github/workflows/ci-testing-deploy.yml
Original file line number Diff line number Diff line change @@ -231,12 +231,12 @@ qx.Class.define("osparc.data.model.NodeProgressSequence", {
231231 const sequenceLoadingPage = new osparc . widget . ProgressSequence ( qx . locale . Manager . tr ( "LOADING ..." ) ) ;
232232 const nTasks = 7 ;
233233 this . __overallProgressBar = sequenceLoadingPage . addOverallProgressBar ( nTasks ) ;
234- this . __clusterUpScalingLayout = sequenceLoadingPage . addNewTask ( qx . locale . Manager . tr ( "Increasing system capacity ..." ) ) ;
235- this . __pullingSidecarLayout = sequenceLoadingPage . addNewTask ( qx . locale . Manager . tr ( "Setting up key components ..." ) ) ;
234+ this . __clusterUpScalingLayout = sequenceLoadingPage . addNewTask ( qx . locale . Manager . tr ( "Provisioning resources ..." ) ) ;
235+ this . __pullingSidecarLayout = sequenceLoadingPage . addNewTask ( qx . locale . Manager . tr ( "Setting up system software ..." ) ) ;
236236 this . __pullingOutputsLayout = sequenceLoadingPage . addNewTask ( qx . locale . Manager . tr ( "Retrieving your output data ..." ) ) ;
237237 this . __pullingStateLayout = sequenceLoadingPage . addNewTask ( qx . locale . Manager . tr ( "Retrieving your work ..." ) ) ;
238- this . __pullingImagesLayout = sequenceLoadingPage . addNewTask ( qx . locale . Manager . tr ( "Installing software ..." ) ) ;
239- this . __startingSoftwareLayout = sequenceLoadingPage . addNewTask ( qx . locale . Manager . tr ( "Starting software ..." ) ) ;
238+ this . __pullingImagesLayout = sequenceLoadingPage . addNewTask ( qx . locale . Manager . tr ( "Installing services ..." ) ) ;
239+ this . __startingSoftwareLayout = sequenceLoadingPage . addNewTask ( qx . locale . Manager . tr ( "Starting services ..." ) ) ;
240240 this . __pullingInputsLayout = sequenceLoadingPage . addNewTask ( qx . locale . Manager . tr ( "Retrieving your input data ..." ) ) ;
241241 this . __mainLoadingPage . addAt ( sequenceLoadingPage , 0 , {
242242 flex : 1
You can’t perform that action at this time.
0 commit comments