Skip to content

Commit 58a906a

Browse files
authored
Merge pull request #106191 from BethWilke/task106
Fixing alphabetization of word 'graphical'.
2 parents fa5e322 + f19543c commit 58a906a

7 files changed

+143
-158
lines changed

articles/automation/automation-child-runbooks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ The parameters of a child runbook called inline can be of any data type, includi
2727

2828
Which runbook types can call each other?
2929

30-
* A [PowerShell runbook](automation-runbook-types.md#powershell-runbooks) and a [Graphical runbook](automation-runbook-types.md#graphical-runbooks) can call each other inline, as both are PowerShell-based.
31-
* A [PowerShell Workflow runbook](automation-runbook-types.md#powershell-workflow-runbooks) and a Graphical PowerShell Workflow runbook can call each other inline, as both are PowerShell Workflow-based.
30+
* A [PowerShell runbook](automation-runbook-types.md#powershell-runbooks) and a [graphical runbook](automation-runbook-types.md#graphical-runbooks) can call each other inline, as both are PowerShell-based.
31+
* A [PowerShell Workflow runbook](automation-runbook-types.md#powershell-workflow-runbooks) and a graphical PowerShell Workflow runbook can call each other inline, as both are PowerShell Workflow-based.
3232
* The PowerShell types and the PowerShell Workflow types can’t call each other inline, and must use **Start-AzAutomationRunbook**.
3333

3434
When does publish order matter?
3535

36-
The publish order of runbooks only matters for PowerShell Workflow and Graphical PowerShell Workflow runbooks.
36+
The publish order of runbooks only matters for PowerShell Workflow and graphical PowerShell Workflow runbooks.
3737

38-
When your runbook calls a Graphical or PowerShell Workflow child runbook using inline execution, it uses the name of the runbook. The name must start with **.\\** to specify that the script is located in the local directory.
38+
When your runbook calls a graphical or PowerShell Workflow child runbook using inline execution, it uses the name of the runbook. The name must start with **.\\** to specify that the script is located in the local directory.
3939

4040
### Example
4141

articles/automation/automation-edit-textual-runbook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The textual editor includes a feature to insert code for cmdlets, assets, and ch
1818

1919
Each runbook in Azure Automation has two versions, Draft and Published. You edit the Draft version of the runbook and then publish it so it can be executed. The Published version cannot be edited. For more information, see [Publishing a runbook](manage-runbooks.md#publish-a-runbook).
2020

21-
This article provides detailed steps for performing different functions with this editor. These are not applicable to [Graphical Runbooks](automation-runbook-types.md#graphical-runbooks). To work with these runbooks, see [Graphical authoring in Azure Automation](automation-graphical-authoring-intro.md).
21+
This article provides detailed steps for performing different functions with this editor. These are not applicable to [graphical runbooks](automation-runbook-types.md#graphical-runbooks). To work with these runbooks, see [Graphical authoring in Azure Automation](automation-graphical-authoring-intro.md).
2222

2323
>[!NOTE]
2424
>This article has been updated to use the new Azure PowerShell Az module. You can still use the AzureRM module, which will continue to receive bug fixes until at least December 2020. To learn more about the new Az module and AzureRM compatibility, see [Introducing the new Azure PowerShell Az module](https://docs.microsoft.com/powershell/azure/new-azureps-module-az?view=azps-3.5.0). For Az module installation instructions on your Hybrid Runbook Worker, see [Install the Azure PowerShell Module](https://docs.microsoft.com/powershell/azure/install-az-ps?view=azps-3.5.0). For your Automation account, you can update your modules to the latest version using [How to update Azure PowerShell modules in Azure Automation](automation-update-azure-modules.md).

articles/automation/automation-first-runbook-graphical.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.subservice: process-automation
77
ms.date: 04/13/2018
88
ms.topic: conceptual
99
---
10-
# My first Graphical runbook
10+
# My first graphical runbook
1111

1212
> [!div class="op_single_selector"]
1313
> * [Graphical](automation-first-runbook-graphical.md)
@@ -16,7 +16,7 @@ ms.topic: conceptual
1616
> * [Python](automation-first-runbook-textual-python2.md)
1717
>
1818
19-
This tutorial walks you through the creation of a [Graphical runbook](automation-runbook-types.md#graphical-runbooks) in Azure Automation. Start with a simple runbook that tests and publishes, while learning how to track the status of the runbook job. Then modify the runbook to actually manage Azure resources, in this case starting an Azure virtual machine. Complete the tutorial to make the runbook more robust by adding runbook parameters and conditional links.
19+
This tutorial walks you through the creation of a [graphical runbook](automation-runbook-types.md#graphical-runbooks) in Azure Automation. Start with a simple runbook that tests and publishes, while learning how to track the status of the runbook job. Then modify the runbook to actually manage Azure resources, in this case starting an Azure virtual machine. Complete the tutorial to make the runbook more robust by adding runbook parameters and conditional links.
2020

2121
>[!NOTE]
2222
>This article has been updated to use the new Azure PowerShell Az module. You can still use the AzureRM module, which will continue to receive bug fixes until at least December 2020. To learn more about the new Az module and AzureRM compatibility, see [Introducing the new Azure PowerShell Az module](https://docs.microsoft.com/powershell/azure/new-azureps-module-az?view=azps-3.5.0). For Az module installation instructions on your Hybrid Runbook Worker, see [Install the Azure PowerShell Module](https://docs.microsoft.com/powershell/azure/install-az-ps?view=azps-3.5.0). For your Automation account, you can update your modules to the latest version using [How to update Azure PowerShell modules in Azure Automation](automation-update-azure-modules.md).
@@ -39,7 +39,7 @@ Start by creating a simple runbook that outputs the text "Hello World".
3939
2. Select **Runbooks** under **Process Automation** to open the list of runbooks.
4040
3. Create a new runbook by selecting **Create a runbook**.
4141
4. Give the runbook the name **MyFirstRunbook-Graphical**.
42-
5. In this case, you're going to create a [Graphical runbook](automation-graphical-authoring-intro.md). Select **Graphical** for **Runbook type**.<br> ![New runbook](media/automation-first-runbook-graphical/create-new-runbook.png)<br>
42+
5. In this case, you're going to create a [graphical runbook](automation-graphical-authoring-intro.md). Select **Graphical** for **Runbook type**.<br> ![New runbook](media/automation-first-runbook-graphical/create-new-runbook.png)<br>
4343
6. Click **Create** to create the runbook and open the graphical editor.
4444

4545
## Step 2 - Add activities

articles/automation/automation-first-runbook-textual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ Your runbook currently starts the VM that you have hardcoded in the runbook. It
207207
## Next steps
208208

209209
* For more information on PowerShell, including language reference and learning modules, refer to the [PowerShell Docs](https://docs.microsoft.com/powershell/scripting/overview).
210-
* To get started with Graphical runbooks, see [My first graphical runbook](automation-first-runbook-graphical.md).
210+
* To get started with graphical runbooks, see [My first graphical runbook](automation-first-runbook-graphical.md).
211211
* To get started with PowerShell runbooks, see [My first PowerShell runbook](automation-first-runbook-textual-powershell.md).
212212
* To learn more about runbook types and their advantages and limitations, see [Azure Automation runbook types](automation-runbook-types.md).
213213
* For more information on PowerShell script support features, see [Native PowerShell script support in Azure Automation](https://azure.microsoft.com/blog/announcing-powershell-script-support-azure-automation-2/).

0 commit comments

Comments
 (0)