Skip to content

Commit

Permalink
Readability in editor
Browse files Browse the repository at this point in the history
  • Loading branch information
wol-soft committed Nov 11, 2021
1 parent f1e4a41 commit b56179a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ This steps may contain the allocation of resources, filtering the data to proces

### Process

This stage contains your main logic of the workflow. If any of the steps fails no further steps of the process stage will be executed.
This stage contains your main logic of the workflow.
If any of the steps fails no further steps of the process stage will be executed.

### OnSuccess

Expand All @@ -255,13 +256,16 @@ All steps of the stage will be executed, even if some steps fail. All failing st
This stage allows you to define steps which shall be executed if any step of the **Process** stage fails.
For example logging, setting up recovery data, etc.

All steps of the stage will be executed, even if some steps fail. All failing steps will be reported as warnings.
All steps of the stage will be executed, even if some steps fail.
All failing steps will be reported as warnings.

### After

This stage allows you to perform cleanup steps after all other stages have been executed. The steps will be executed regardless of the successful execution of the **Process** stage.
This stage allows you to perform cleanup steps after all other stages have been executed.
The steps will be executed regardless of the successful execution of the **Process** stage.

All steps of the stage will be executed, even if some steps fail. All failing steps will be reported as warnings.
All steps of the stage will be executed, even if some steps fail.
All failing steps will be reported as warnings.

## Workflow control

Expand Down

0 comments on commit b56179a

Please sign in to comment.