Skip to content

Commit bb3521d

Browse files
authored
Merge pull request #42797 from ecfan/patch-5
Tweak SEO and standardize titles
2 parents 848fe8a + 20b763f commit bb3521d

7 files changed

+105
-125
lines changed

articles/logic-apps/logic-apps-control-flow-branches.md

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
11
---
2-
title: Parallel branches - Azure Logic Apps | Microsoft Docs
3-
description: Create or join parallel branches in logic apps
2+
# required metadata
3+
title: Create or join parallel branches - Azure Logic Apps | Microsoft Docs
4+
description: How to create or join parallel branches for workflows in Azure Logic Apps
45
services: logic-apps
5-
keywords: branches, parallel processing
6-
documentationcenter: ''
7-
author: ecfan
8-
manager: anneta
9-
editor: ''
10-
11-
ms.assetid:
126
ms.service: logic-apps
13-
ms.workload: logic-apps
14-
ms.tgt_pltfrm: na
15-
ms.devlang: na
16-
ms.topic: article
7+
author: ecfan
8+
ms.author: estfan
9+
manager: cfowler
1710
ms.date: 03/05/2018
18-
ms.author: estfan; LADocs
11+
ms.topic: article
12+
13+
# optional metadata
14+
ms.reviewer: klam, LADocs
15+
ms.suite: integration
1916
---
2017

21-
# Create or join parallel branches in your logic app
18+
# Create or join parallel branches for workflow actions in Azure Logic Apps
2219

23-
By default, actions in a logic app run sequentially.
20+
By default, your actions in logic app workflows run sequentially.
2421
To perform independent actions at the same time,
2522
you can create [parallel branches](#parallel-branches),
2623
and then [join those branches](#join-branches) later in your flow.
@@ -203,4 +200,4 @@ structure in your logic app's JSON definition instead, for example:
203200
* [Run steps based on a condition (conditional statements)](../logic-apps/logic-apps-control-flow-conditional-statement.md)
204201
* [Run steps based on different values (switch statements)](../logic-apps/logic-apps-control-flow-switch-statement.md)
205202
* [Run and repeat steps (loops)](../logic-apps/logic-apps-control-flow-loops.md)
206-
* [Run steps based on grouped action status (scopes)](../logic-apps/logic-apps-control-flow-run-steps-group-scopes.md)
203+
* [Run steps based on grouped action status (scopes)](../logic-apps/logic-apps-control-flow-run-steps-group-scopes.md)

articles/logic-apps/logic-apps-control-flow-conditional-statement.md

Lines changed: 17 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,26 @@
11
---
2-
title: Conditional statements - Run steps based on a condition - Azure Logic Apps | Microsoft Docs
3-
description: Run steps in your logic app only after meeting a condition. Create decision trees that run workflows based on specified conditions.
2+
# required metadata
3+
title: Add conditional statements to workflows - Azure Logic Apps | Microsoft Docs
4+
description: How to create conditions that control actions in workflows in Azure Logic Apps
45
services: logic-apps
5-
keywords: conditional statements, decision trees
6-
documentationcenter: ''
7-
author: ecfan
8-
manager: anneta
9-
editor: ''
10-
11-
ms.assetid:
126
ms.service: logic-apps
13-
ms.workload: logic-apps
14-
ms.tgt_pltfrm: na
15-
ms.devlang: na
16-
ms.topic: article
7+
author: ecfan
8+
ms.author: estfan
9+
manager: cfowler
1710
ms.date: 03/05/2018
18-
ms.author: estfan; LADocs
11+
ms.topic: article
12+
13+
# optional metadata
14+
ms.reviewer: klam, LADocs
15+
ms.suite: integration
1916
---
2017

21-
# Conditional statements: Run steps based on a condition in logic apps
18+
# Create conditional statements that control workflow actions in Azure Logic Apps
2219

23-
To perform steps only after passing a specified condition,
24-
use a *conditional statement*. This structure compares data
25-
in your workflow against specific values or fields.
26-
You can then define different steps to run based on
20+
To run specific actions in your logic app only after passing a specified condition,
21+
add a *conditional statement*. This structure compares the data in your
22+
workflow against specific values or fields.
23+
You can then define different actions that run based on
2724
whether or not the data meets the condition.
2825
You can nest conditions inside each other.
2926

@@ -136,4 +133,4 @@ let's look at the high-level code definition behind the conditional statement.
136133
* [Run steps based on different values (switch statements)](../logic-apps/logic-apps-control-flow-switch-statement.md)
137134
* [Run and repeat steps (loops)](../logic-apps/logic-apps-control-flow-loops.md)
138135
* [Run or merge parallel steps (branches)](../logic-apps/logic-apps-control-flow-branches.md)
139-
* [Run steps based on grouped action status (scopes)](../logic-apps/logic-apps-control-flow-run-steps-group-scopes.md)
136+
* [Run steps based on grouped action status (scopes)](../logic-apps/logic-apps-control-flow-run-steps-group-scopes.md)

articles/logic-apps/logic-apps-control-flow-loops.md

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,27 @@
11
---
2-
title: Loops - Process arrays or repeat actions - Azure Logic Apps | Microsoft Docs
3-
description: Process arrays with "for each" loops, or repeat actions until specific conditions are met in logic apps
2+
# required metadata
3+
title: Add loops that repeat actions or process arrays - Azure Logic Apps | Microsoft Docs
4+
description: How to create loops that repeat workflow actions or process arrays in Azure Logic Apps
45
services: logic-apps
5-
keywords: for each loops
6-
documentationcenter: ''
7-
author: ecfan
8-
manager: anneta
9-
editor: ''
10-
11-
ms.assetid: 75b52eeb-23a7-47dd-a42f-1351c6dfebdc
126
ms.service: logic-apps
13-
ms.workload: logic-apps
14-
ms.tgt_pltfrm: na
15-
ms.devlang: na
16-
ms.topic: article
7+
author: ecfan
8+
ms.author: estfan
9+
manager: cfowler
1710
ms.date: 03/05/2018
18-
ms.author: estfan; LADocs
11+
ms.topic: article
12+
13+
# optional metadata
14+
ms.reviewer: klam, LADocs
15+
ms.suite: integration
1916
---
2017

21-
# Loops: Process arrays or repeat actions until a condition is met
18+
# Create loops that repeat workflow actions or process arrays in Azure Logic Apps
2219

23-
To iterate over arrays in your logic app,
20+
To iterate through arrays in your logic app,
2421
you can use a ["Foreach" loop](#foreach-loop) or a
2522
[sequential "Foreach" loop](#sequential-foreach-loop).
26-
Cycles in a standard "Foreach" loop run in parallel,
27-
while cycles in a sequential "Foreach" loop run one at a time.
23+
The iterations for a standard "Foreach" loop run in parallel,
24+
while the iterations for a sequential "Foreach" loop run one at a time.
2825
For the maximum number of array items that "Foreach" loops
2926
can process in a single logic app run, see
3027
[Limits and configuration](../logic-apps/logic-apps-limits-and-config.md).

articles/logic-apps/logic-apps-control-flow-run-steps-group-scopes.md

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,24 @@
11
---
2-
title: Run steps based on grouped action status - Azure Logic Apps | Microsoft Docs
3-
description: Group actions into scopes and run steps based on group status
2+
# required metadata
3+
title: Add scopes that run actions based on group status - Azure Logic Apps | Microsoft Docs
4+
description: How to create scopes that run workflow actions based on group action status in Azure Logic Apps
45
services: logic-apps
5-
keywords: branches, parallel processing
6-
documentationcenter: ''
7-
author: ecfan
8-
manager: anneta
9-
editor: ''
10-
11-
ms.assetid:
126
ms.service: logic-apps
13-
ms.workload: logic-apps
14-
ms.tgt_pltfrm: na
15-
ms.devlang: na
16-
ms.topic: article
7+
author: ecfan
8+
ms.author: estfan
9+
manager: cfowler
1710
ms.date: 03/05/2018
18-
ms.author: estfan; LADocs
11+
ms.topic: article
12+
13+
# optional metadata
14+
ms.reviewer: klam, LADocs
15+
ms.suite: integration
1916
---
2017

21-
# Scopes: Run steps based on group status in logic apps
18+
# Create scopes that run workflow actions based on group status in Azure Logic Apps
2219

23-
To run steps only after another group of actions succeed or fail,
24-
put that group inside a *scope*. This structure is useful when
20+
To run actions only after another group of actions succeed or fail,
21+
group those actions inside a *scope*. This structure is useful when
2522
you want to organize actions as a logical group,
2623
evaluate that group's status, and perform actions
2724
that are based on the scope's status.
@@ -404,4 +401,4 @@ visit the [Azure Logic Apps user feedback site](http://aka.ms/logicapps-wish).
404401
* [Run steps based on a condition (conditional statements)](../logic-apps/logic-apps-control-flow-conditional-statement.md)
405402
* [Run steps based on different values (switch statements)](../logic-apps/logic-apps-control-flow-switch-statement.md)
406403
* [Run and repeat steps (loops)](../logic-apps/logic-apps-control-flow-loops.md)
407-
* [Run or merge parallel steps (branches)](../logic-apps/logic-apps-control-flow-branches.md)
404+
* [Run or merge parallel steps (branches)](../logic-apps/logic-apps-control-flow-branches.md)

articles/logic-apps/logic-apps-control-flow-switch-statement.md

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,25 @@
11
---
2-
title: Switch statements - Run steps based on specific values - Azure Logic Apps | Microsoft Docs
3-
description: Run different steps based on the values from objects, expressions, or tokens in logic apps
2+
# required metadata
3+
title: Add switch statements to workflows - Azure Logic Apps | Microsoft Docs
4+
description: How to create switch statements that control workflow actions based on specific values in Azure Logic Apps
45
services: logic-apps
5-
keywords: switch statement
6-
author: ecfan
7-
manager: anneta
8-
editor: ''
9-
documentationcenter: ''
10-
11-
ms.assetid:
126
ms.service: logic-apps
13-
ms.devlang: na
14-
ms.topic: article
15-
ms.tgt_pltfrm: na
16-
ms.workload: na
7+
author: ecfan
8+
ms.author: estfan
9+
manager: cfowler
1710
ms.date: 03/05/2018
18-
ms.author: estfan; LADocs
11+
ms.topic: article
12+
13+
# optional metadata
14+
ms.reviewer: klam, LADocs
15+
ms.suite: integration
1916
---
2017

21-
# Switch statements: Run different steps based on specific values in logic apps
18+
# Create switch statements that run workflow actions based on specific values in Azure Logic Apps
2219

23-
To perform different steps based on the values of an object, expression, or token,
24-
use a *switch* statement. This structure evaluates the object, expression, or token,
25-
chooses the case that matches the result, and runs steps for only that case.
20+
To run specific actions based on the values of objects, expressions, or tokens,
21+
add a *switch* statement. This structure evaluates the object, expression, or token,
22+
chooses the case that matches the result, and runs specific actions only for that case.
2623
When the switch statement runs, only one case should match the result.
2724

2825
For example, suppose you want a logic app that takes different steps
@@ -155,4 +152,4 @@ let's look at the high-level code definition behind the switch statement.
155152
* [Run steps based on a condition (conditional statements)](../logic-apps/logic-apps-control-flow-conditional-statement.md)
156153
* [Run and repeat steps (loops)](../logic-apps/logic-apps-control-flow-loops.md)
157154
* [Run or merge parallel steps (branches)](../logic-apps/logic-apps-control-flow-branches.md)
158-
* [Run steps based on grouped action status (scopes)](../logic-apps/logic-apps-control-flow-run-steps-group-scopes.md)
155+
* [Run steps based on grouped action status (scopes)](../logic-apps/logic-apps-control-flow-run-steps-group-scopes.md)

articles/logic-apps/quickstart-create-first-logic-app-workflow.md

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,24 @@
11
---
2-
title: Create your first automated workflow - Azure Logic Apps | Microsoft Docs
3-
description: This quickstart shows how to automate your first workflow with Azure Logic Apps for system integration and enterprise application integration (EAI) scenarios that integrate systems & cloud services
4-
author: ecfan
5-
manager: anneta
6-
editor: ''
2+
# required metadata
3+
title: Create and automate your first workflow - Azure Logic Apps | Microsoft Docs
4+
description: Quickstart for how to create your first logic app that automates tasks, processes, and workflows with Azure Logic Apps. Create logic apps for system integration and enterprise application integration (EAI) solutions for your systems & cloud services
75
services: logic-apps
8-
keywords: workflows, cloud services, system integration, enterprise application integration, EAI
9-
documentationcenter: ''
10-
11-
ms.assetid: ce3582b5-9c58-4637-9379-75ff99878dcd
126
ms.service: logic-apps
13-
ms.workload: na
14-
ms.tgt_pltfrm: na
15-
ms.devlang: na
7+
author: ecfan
8+
ms.author: estfan
9+
manager: cfowler
10+
ms.date: 1/12/2018
1611
ms.topic: quickstart
1712
ms.custom: mvc
18-
ms.date: 1/12/2018
19-
ms.author: LADocs; estfan
13+
14+
# optional metadata
15+
ms.reviewer: klam, LADocs
16+
ms.suite: integration
2017
---
2118

22-
# Quickstart: Build your first logic app workflow - Azure portal
19+
# Quickstart: Create your first automated workflow with Azure Logic Apps - Azure portal
2320

24-
This quickstart introduces how to create your first automated workflow
21+
This quickstart introduces how to build your first automated workflow
2522
with [Azure Logic Apps](../logic-apps/logic-apps-overview.md).
2623
In this article, you create a logic app that regularly checks a website's RSS feed for new items.
2724
If new items exist, the logic app sends an email for each item.
@@ -242,4 +239,4 @@ when updates exist. To learn more, continue with this tutorial that creates
242239
more advanced schedule-based workflows:
243240

244241
> [!div class="nextstepaction"]
245-
> [Check traffic with a scheduled-based logic app](../logic-apps/tutorial-build-schedule-recurring-logic-app-workflow.md)
242+
> [Check traffic with a scheduled-based logic app](../logic-apps/tutorial-build-schedule-recurring-logic-app-workflow.md)

articles/logic-apps/quickstart-create-logic-apps-with-visual-studio.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11
---
2-
title: Automate tasks and processes with Visual Studio and Azure Logic Apps | Microsoft Docs
3-
description: This quickstart shows how to create workflows that automate tasks and processes with Azure Logic Apps in Visual Studio
4-
author: ecfan
5-
manager: SyntaxC4
6-
editor: ''
2+
# required metadata
3+
title: Create logic apps that automate workflows with Visual Studio - Azure Logic Apps | Microsoft Docs
4+
description: Quickstart for how to automate tasks, processes, and workflows with Azure Logic Apps in Visual Studio
75
services: logic-apps
8-
documentationcenter: ''
9-
10-
ms.assetid:
116
ms.service: logic-apps
12-
ms.workload: logic-apps
13-
ms.tgt_pltfrm: na
14-
ms.devlang: na
7+
author: ecfan
8+
ms.author: estfan
9+
manager: cfowler
10+
ms.date: 03/15/2018
1511
ms.topic: quickstart
1612
ms.custom: mvc
17-
ms.date: 03/15/2018
18-
ms.author: estfan; LADocs
13+
14+
# optional metadata
15+
ms.reviewer: klam, LADocs
16+
ms.suite: integration
1917
---
2018

21-
# Quickstart: Automate tasks and processes with Azure Logic Apps - Visual Studio
19+
# Quickstart: Create and automate tasks, processes, and worklfofws with Azure Logic Apps - Visual Studio
2220

23-
With [Azure Logic Apps](../logic-apps/logic-apps-overview.md),
24-
you can create workflows that automate tasks and processes for integrating apps,
21+
With [Azure Logic Apps](../logic-apps/logic-apps-overview.md) and Visual Studio,
22+
you can create workflows for automating tasks and processes that integrate apps,
2523
data, systems, and services across enterprises and organizations.
2624
This quickstart shows how you can design and build these workflows
2725
by creating logic apps in Visual Studio and deploying those apps to

0 commit comments

Comments
 (0)