Skip to content

Commit 0c2c33c

Browse files
committed
Adding link
1 parent e3b3e98 commit 0c2c33c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/pipelines/process/conditions.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Conditions
33
ms.custom: seodec18
4-
description: Learn about how you can write custom conditions in Azure Pipelines or Team Foundation Server (TFS).
4+
description: Learn about how you can write custom conditions in Azure Pipelines.
55
ms.topic: conceptual
66
ms.assetid: C79149CC-6E0D-4A39-B8D1-EB36C8D3AB89
77
ms.date: 02/17/2023
@@ -145,7 +145,7 @@ stages:
145145

146146
If you queue a build on the `main` branch, and you cancel it while `stage1` is running, `stage2` *won't* run, even though it contains a job `A` whose condition evaluates to `true`. The reason is because `stage2` has the default `condition: succeeded()`, which evaluates to `false` when `stage1` is canceled. Therefore, `stage2` is skipped, and none of its jobs run.
147147

148-
Say you have the following YAML pipeline. Notice that, by default, `stage1` depends on `stage2` and that `script: echo 2` has a `condition` set for it.
148+
Say you have the following YAML pipeline. Notice that, by default, `stage2` depends on `stage1` and that `script: echo 2` has a `condition` set for it.
149149
```yaml
150150
stages:
151151
- stage: stage1
@@ -286,7 +286,7 @@ jobs:
286286

287287
### Use a template parameter as part of a condition
288288

289-
When you declare a parameter in the same pipeline that you have a condition, parameter expansion happens before conditions are considered. In this case, you can embed parameters inside conditions. The script in this YAML file will run because `parameters.doThing` is true.
289+
When you declare a parameter in the same pipeline that you have a condition, parameter expansion happens before conditions are considered. In this case, you can embed parameters inside conditions. The script in this YAML file will run because `parameters.doThing` is true. For more template parameter examples, see [Template types & usage](templates.md).
290290

291291
```yaml
292292
parameters:

0 commit comments

Comments
 (0)