You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _docs/codefresh-yaml/advanced-workflows.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -804,7 +804,7 @@ In this case Codefresh will make sure that cleanup happens only when both unit a
804
804
805
805
For maximum flexibility you can define a custom conditional for a step.
806
806
807
-
It is hard to describe all possible cases, because Codefresh support a[mini DSL]({{site.baseurl}}/docs/codefresh-yaml/expression-condition-syntax/) for conditions. All examples mentioned in[conditional execution]({{site.baseurl}}/docs/codefresh-yaml/conditional-execution-of-steps/) are still valid in parallel pipelines.
807
+
It is hard to describe all possible cases, because Codefresh support a[mini DSL]({{site.baseurl}}/docs/codefresh-yaml/condition-expression-syntax/) for conditions. All examples mentioned in[conditional execution]({{site.baseurl}}/docs/codefresh-yaml/conditional-execution-of-steps/) are still valid in parallel pipelines.
808
808
809
809
For example, run this step only if a PR is opened against the production branch:
810
810
@@ -962,7 +962,7 @@ Notice that both examples assume that `fail_fast: false` is at the root of the `
Copy file name to clipboardExpand all lines: _docs/codefresh-yaml/annotations.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -159,7 +159,7 @@ Click *Save* to apply your changes.
159
159
160
160
##Complex annotation values
161
161
162
-
Apart from scalar values, you can also store more complex expressions in annotations. You have access to all[Codefresh variables]({{site.baseurl}}/docs/codefresh-yaml/variables/), text files from the build and even evaluations from the[expression syntax]({{site.baseurl}}/docs/codefresh-yaml/expression-condition-syntax/)
162
+
Apart from scalar values, you can also store more complex expressions in annotations. You have access to all[Codefresh variables]({{site.baseurl}}/docs/codefresh-yaml/variables/), text files from the build and even evaluations from the[expression syntax]({{site.baseurl}}/docs/codefresh-yaml/condition-expression-syntax/)
Copy file name to clipboardExpand all lines: _docs/codefresh-yaml/conditional-execution-of-steps.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,10 +65,10 @@ build-step:
65
65
The[JavaScript regular expressions](https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions) flavour is the one used in branch conditions.
66
66
{{site.data.callout.end}}
67
67
68
-
##Expression Conditions
69
-
Alternatively, you can use more advancedexpression conditions.
68
+
##Condition expressions
69
+
Alternatively, you can use more advancedcondition expressions.
70
70
71
-
This follows the standard[expressioncondition syntax]({{site.baseurl}}/docs/codefresh-yaml/expression-condition-syntax/). In this case, you can choose to execute if```all``` expression conditions evaluate to```true```, or to execute if```any``` expression conditions evaluate to```true```.
71
+
This follows the standard[conditionexpression syntax]({{site.baseurl}}/docs/codefresh-yaml/condition-expression-syntax/). In this case, you can choose to execute if```all``` expression conditions evaluate to```true```, or to execute if```any``` expression conditions evaluate to```true```.
72
72
73
73
Here are some examples. Execute if the string```[skip ci]``` is not part of the main repository commit message AND if the branch is```master```
Copy file name to clipboardExpand all lines: _docs/integrations/jenkins-integration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -482,7 +482,7 @@ steps:
482
482
{% endraw %}
483
483
{% endhighlight %}
484
484
485
-
You can define much more complex conditions using the[Codefresh expression language]({{site.baseurl}}/docs/codefresh-yaml/expression-condition-syntax/).
485
+
You can define much more complex conditions using the[Codefresh expression language]({{site.baseurl}}/docs/codefresh-yaml/condition-expression-syntax/).