Skip to content

Commit b03aa4e

Browse files
authored
Merge pull request #90822 from ecfan/seo-first-workflow
Quickstart - Create first workflow - SEO fixes per CATS report
2 parents 11fc6be + 9f6bd9b commit b03aa4e

File tree

7 files changed

+19
-20
lines changed

7 files changed

+19
-20
lines changed
3.1 KB
Loading

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

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.date: 08/20/2019
1717

1818
This quickstart introduces how to build your first automated workflow with [Azure Logic Apps](../logic-apps/logic-apps-overview.md). In this article, you create a logic app that regularly checks a website's RSS feed for new items. If new items exist, the logic app sends an email for each item. When you're done, your logic app looks like this workflow at a high level:
1919

20-
![Overview - logic app example](./media/quickstart-create-first-logic-app-workflow/overview.png)
20+
![High-level example logic app workflow](./media/quickstart-create-first-logic-app-workflow/quickstart-workflow-overview.png)
2121

2222
To follow this quickstart, you need an email account from a provider that's supported by Logic Apps, such as Office 365 Outlook, Outlook.com, or Gmail. For other providers, [review the connectors list here](https://docs.microsoft.com/connectors/). This logic app uses an Office 365 Outlook account. If you use another email account, the overall steps are the same, but your UI might slightly differ.
2323

@@ -31,11 +31,11 @@ Sign in to the [Azure portal](https://portal.azure.com) with your Azure account
3131

3232
1. From the main Azure menu, select **Create a resource** > **Integration** > **Logic App**.
3333

34-
![Create logic app](./media/quickstart-create-first-logic-app-workflow/create-logic-app.png)
34+
![Create logic app - Azure portal](./media/quickstart-create-first-logic-app-workflow/create-new-logic-app.png)
3535

3636
1. Under **Create logic app**, provide details about your logic app as shown here. After you're done, select **Create**.
3737

38-
![Provide logic app details](./media/quickstart-create-first-logic-app-workflow/create-logic-app-settings.png)
38+
![Provide details for new logic app](./media/quickstart-create-first-logic-app-workflow/create-logic-app-settings.png)
3939

4040
| Property | Value | Description |
4141
|----------|-------|-------------|
@@ -48,13 +48,13 @@ Sign in to the [Azure portal](https://portal.azure.com) with your Azure account
4848

4949
1. After Azure deploys your app, on the Azure toolbar, select **Notifications** > **Go to resource** for your deployed logic app.
5050

51-
![Go to resource](./media/quickstart-create-first-logic-app-workflow/go-to-logic-app.png)
51+
![Go to newly created logic app resource](./media/quickstart-create-first-logic-app-workflow/go-to-new-logic-app-resource.png)
5252

5353
Or, you can find and select your logic app by typing the name in the search box.
5454

5555
The Logic Apps Designer opens and shows a page with an introduction video and commonly used triggers. Under **Templates**, select **Blank Logic App**.
5656

57-
![Select blank logic app template](./media/quickstart-create-first-logic-app-workflow/choose-logic-app-template.png)
57+
![Select blank template for logic app](./media/quickstart-create-first-logic-app-workflow/choose-logic-app-template.png)
5858

5959
Next, add a [trigger](../logic-apps/logic-apps-overview.md#logic-app-concepts) that fires when a new RSS feed item appears. Every logic app must start with a trigger, which fires when a specific event happens or when a specific condition is met. Each time the trigger fires, the Logic Apps engine creates a logic app instance that starts and runs your workflow.
6060

@@ -66,15 +66,15 @@ Next, add a [trigger](../logic-apps/logic-apps-overview.md#logic-app-concepts) t
6666

6767
1. In the search box, enter "rss". From the triggers list, select this trigger: **When a feed item is published - RSS**
6868

69-
![Select trigger: "RSS - When a feed item is published"](./media/quickstart-create-first-logic-app-workflow/add-trigger-rss.png)
69+
![Select "When a feed item is published" trigger](./media/quickstart-create-first-logic-app-workflow/add-rss-trigger-new-feed-item.png)
7070

7171
1. Provide this information for your trigger as shown and described here:
7272

73-
![Set up trigger with RSS feed, frequency, and interval](./media/quickstart-create-first-logic-app-workflow/add-trigger-rss-settings.png)
73+
![Set up trigger with RSS feed, frequency, and interval](./media/quickstart-create-first-logic-app-workflow/add-rss-trigger-settings.png)
7474

7575
| Property | Value | Description |
7676
|----------|-------|-------------|
77-
| **The RSS feed URL** | ```http://feeds.reuters.com/reuters/topNews``` | The link for the RSS feed that you want to monitor |
77+
| **The RSS feed URL** | `http://feeds.reuters.com/reuters/topNews` | The link for the RSS feed that you want to monitor |
7878
| **Interval** | 1 | The number of intervals to wait between checks |
7979
| **Frequency** | Minute | The unit of time for each interval between checks |
8080
||||
@@ -83,7 +83,7 @@ Next, add a [trigger](../logic-apps/logic-apps-overview.md#logic-app-concepts) t
8383

8484
1. To hide the trigger details for now, click inside the trigger's title bar.
8585

86-
![Collapse shape to hide details](./media/quickstart-create-first-logic-app-workflow/collapse-trigger-shape.png)
86+
![Collapse logic app shape to hide details](./media/quickstart-create-first-logic-app-workflow/collapse-trigger-shape.png)
8787

8888
1. Save your logic app. On the designer toolbar, select **Save**.
8989

@@ -95,13 +95,13 @@ Now add an [action](../logic-apps/logic-apps-overview.md#logic-app-concepts) tha
9595

9696
1. Under the **When a feed item is published** trigger, select **New step**.
9797

98-
![Add an action](./media/quickstart-create-first-logic-app-workflow/add-new-action.png)
98+
![Under trigger, select "New step"](./media/quickstart-create-first-logic-app-workflow/add-new-step-under-trigger.png)
9999

100100
1. Under **Choose an action** and the search box, select **All**.
101101

102102
1. In the search box, enter "send an email". From the actions list, select the "send an email" action for the email provider that you want.
103103

104-
![Select this action: "Office 365 Outlook - Send an email"](./media/quickstart-create-first-logic-app-workflow/add-action-send-email.png)
104+
![Select the "Send an email" action for Office 365 Outlook](./media/quickstart-create-first-logic-app-workflow/add-action-send-email.png)
105105

106106
To filter the actions list to a specific app or service, you can select that app or service first:
107107

@@ -118,22 +118,22 @@ Now add an [action](../logic-apps/logic-apps-overview.md#logic-app-concepts) tha
118118

119119
1. In the **Subject** box, enter this text with a trailing blank space: ```New RSS item:```
120120

121-
![Enter the email subject](./media/quickstart-create-first-logic-app-workflow/add-action-send-email-subject.png)
121+
![In the "Subject" property, enter your email subject](./media/quickstart-create-first-logic-app-workflow/add-action-send-email-subject.png)
122122

123123
1. From the **Add dynamic content** list, select **Feed title** to include the RSS item title.
124124

125-
![Dynamic content list - "Feed title"](./media/quickstart-create-first-logic-app-workflow/add-action-send-email-subject-dynamic-content.png)
125+
![From dynamic content list, select "Feed title" property](./media/quickstart-create-first-logic-app-workflow/add-action-send-email-subject-dynamic-content.png)
126126

127127
When you're done, the email subject looks like this example:
128128

129-
![Added feed title](./media/quickstart-create-first-logic-app-workflow/add-action-send-email-feed-title.png)
129+
![Finished email subject example for added feed title](./media/quickstart-create-first-logic-app-workflow/add-action-send-email-feed-title.png)
130130

131131
If a "For each" loop appears on the designer, then you selected a token for an array, for example, the **categories-Item** token. For these kinds of tokens, the designer automatically
132132
adds this loop around the action that references that token. That way, your logic app performs the same action on each array item. To remove the loop, select the **ellipses** (**...**) on the loop's title bar, then select **Delete**.
133133

134134
1. In the **Body** box, enter this text, and select these tokens for the email body. To add blank lines in an edit box, press Shift + Enter.
135135

136-
![Add contents for email body](./media/quickstart-create-first-logic-app-workflow/add-action-send-email-body.png)
136+
![Select properties for email body content](./media/quickstart-create-first-logic-app-workflow/add-action-send-email-body.png)
137137

138138
| Property | Description |
139139
|----------|-------------|
@@ -152,10 +152,9 @@ To manually start your logic app, on the designer toolbar bar, select **Run**. O
152152

153153
For example, here is a sample email that this logic app sends.
154154

155-
![Email sent for new RSS feed item](./media/quickstart-create-first-logic-app-workflow/monitor-rss-feed-email.png)
155+
![Sample email sent when new RSS feed item appears](./media/quickstart-create-first-logic-app-workflow/monitor-rss-feed-email.png)
156156

157-
Technically, when the trigger checks the RSS feed and finds new items, the trigger fires, and the Logic Apps engine creates an instance of your logic app workflow that runs the actions in the workflow. If the trigger doesn't find new items,
158-
the trigger doesn't fire and "skips" instantiating the workflow.
157+
Technically, when the trigger checks the RSS feed and finds new items, the trigger fires, and the Logic Apps engine creates an instance of your logic app workflow that runs the actions in the workflow. If the trigger doesn't find new items, the trigger doesn't fire and "skips" instantiating the workflow.
159158

160159
Congratulations, you've now successfully built and run your first logic app with the Azure portal.
161160

@@ -165,11 +164,11 @@ When you no longer need this sample, delete the resource group that contains you
165164

166165
1. On the main Azure menu, select **Resource groups**, and then select your logic app's resource group. On the **Overview** pane, select **Delete resource group**.
167166

168-
!["Resource groups" > "Overview" > "Delete resource group"](./media/quickstart-create-first-logic-app-workflow/delete-resource-group.png)
167+
![Find, select, and delete resource group](./media/quickstart-create-first-logic-app-workflow/delete-resource-group.png)
169168

170169
1. Enter the resource group name as confirmation, and select **Delete**.
171170

172-
![Confirm deletion](./media/quickstart-create-first-logic-app-workflow/delete-resource-group-2.png)
171+
![To confirm deletion, select "Delete"](./media/quickstart-create-first-logic-app-workflow/delete-resource-group-2.png)
173172

174173
> [!NOTE]
175174
> When you delete a logic app, no new runs are instantiated.

0 commit comments

Comments
 (0)