Skip to content

Commit 13dd2aa

Browse files
author
iscaltritti-sw
committed
Apply indentation, typo fixes and bold formatting
1 parent 10822cc commit 13dd2aa

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

Docs/addARMServiceConnection.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ Go to [Service connections](https://docs.microsoft.com/en-us/azure/devops/pipeli
1515

1616
- From your Azure DevOps project, go to `Project settings -> Service Connections -> New Service connection`.
1717

18-
![addARMServiceConnection1](./media/addARMServiceConnection1.png)
18+
![addARMServiceConnection1](./media/addARMServiceConnection1.png)
1919

2020
- Select `Azure Resource Manager -> Service principal (manual)` and fill out the form. Check the `Grant access permission to all pipelines` option. The name you use for the Subscription Name field will be your `AzureSubscription` variable in the pipelines.
2121

22-
![addARMServiceConnection2](./media/addARMServiceConnection2.png)
22+
![addARMServiceConnection2](./media/addARMServiceConnection2.png)
2323

2424
- Click on `Verify and save` when done.

Docs/createWebAppDeploymentCredentials.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Go to [Configure deployment credentials for Azure App Service](https://docs.micr
1313

1414
- From a terminal where [az cli](https://docs.microsoft.com/en-us/cli/azure/) is accessible, run `az login` (in case you're not logged in), then execute the following command:
1515

16-
`az webapp deployment user set --user-name [name] --password [password]`
16+
`az webapp deployment user set --user-name [name] --password [password]`
1717

18-
**Note: Special characters at the beginning of the user name will work when creating the credentials, but break later on. We advise to avoid special characters for these credentials altogether.**
18+
**Note: Special characters at the beginning of the user name will work when creating the credentials, but break later on. We advise to avoid special characters for these credentials altogether.**

Docs/getServicePrincipalObjectID.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ The following steps will guide you on how to get the Service Principal's Object
1111
- Go to `Azure subscription -> Access control -> Role assignments` and select the service principal used to configure the service connection.
1212
- Copy the value of the `Object ID`.
1313

14-
![getServicePrincipalObjectID](./media/getServicePrincipalObjectID.png)
14+
![getServicePrincipalObjectID](./media/getServicePrincipalObjectID.png)

Docs/pipelines.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
| **AzureSubscription** | Azure DevOps | Name of the Azure Resource Manager Service Connection configured in the DevOps organization. Click [here](./addARMServiceConnection.md) to see how to set it up. |
1212
| **KeyVaultObjectId** | Azure | Object ID of the Service Principal configured in the pipeline. Click [here](./getServicePrincipalObjectID.md) to see how to get it. |
1313
| **ResourceGroupName** | User | Name for the two resource groups that will contain the shared resources. |
14-
| **AppServicePlanPricingTier** | User | (optional) Pricing tier for the App Service Plan. Possible values are: F1 (default), S1. |
14+
| **AppServicePlanPricingTier** | User | (optional) Pricing tier for the App Service Plan. **Possible values are: F1 (default), S1.** |
1515
| **ResourceSuffix** | User | (optional) Suffix to add to the resource names to avoid collisions. |
1616

1717
## Deploy Bot Resources Pipeline
1818

19-
- Description: Creates the test bot resources to be used in the functional tests, separated in one Resource Group r each language (DotNet, JS, and Python)
19+
- Description: Creates the test bot resources to be used in the functional tests, separated in one Resource Group for each language (DotNet, JS, and Python)
2020
- Schedule: Nightly or on demand.
2121
- YAML: [build\yaml\deployBotResources\deployBotResources.yml](../build/yaml/deployBotResources/deployBotResources.yml)
2222

@@ -32,13 +32,13 @@
3232
| **ResourceGroup** | User | Prefix of the resource groups where the bots will be deployed. |
3333
| **[BotName](#botnames) + AppId** | [App Registration Portal](https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade) | (optional) App ID to use. If not configured, will be retrieved from the key vault. |
3434
| **[BotName](#botnames) + AppSecret** | [App Registration Portal](https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade) | (optional) App Secret to use. If not configured, will be retrieved from the key vault. |
35-
| **BotPricingTier** | User | (optional) Pricing tier for the Web App resources.Possible values are: F0 (default), S1. |
36-
| **DependenciesRegistryHosts** | User | (optional) Source from which the Bot Builder dependencies will be downloaded for all host bots. Possible values are: Artifacts (default), MyGet, NuGet, or specific sources. |
37-
| **DependenciesRegistrySkills** | User | (optional) Source from which the Bot Builder dependencies will be downloaded for all skill bots. Possible values are: Artifacts (default), MyGet, NuGet, or specific sources. |
38-
| **DependenciesRegistrySkillsV3** | User | (optional) Source from which the Bot Builder dependencies will be downloaded for all V3 skill bots. Possible values are: Artifacts, MyGet (default), NuGet, or specific sources. |
39-
| **DependeciesVersionHosts** | User | (optional) Bot Builder dependency version to use for all hosts. Possible values are: Latest (default), Stable, or specific version numbers. |
40-
| **DependeciesVersionSkills** | User | (optional) Bot Builder dependency version to use for all hosts. Possible values are: Latest (default), Stable, or specific version numbers. |
41-
| **DependeciesVersionSkillsV3** | User | (optional) Bot Builder dependency version to use for all hosts. Possible values are: Latest (default), Stable, or specific version numbers. |
35+
| **BotPricingTier** | User | (optional) Pricing tier for the Web App resources. **Possible values are: F0 (default), S1.** |
36+
| **DependenciesRegistryHosts** | User | (optional) Source from which the Bot Builder dependencies will be downloaded for all host bots. **Possible values are: Artifacts (default), MyGet, NuGet, or specific sources.** |
37+
| **DependenciesRegistrySkills** | User | (optional) Source from which the Bot Builder dependencies will be downloaded for all skill bots. **Possible values are: Artifacts (default), MyGet, NuGet, or specific sources.** |
38+
| **DependenciesRegistrySkillsV3** | User | (optional) Source from which the Bot Builder dependencies will be downloaded for all V3 skill bots. **Possible values are: Artifacts, MyGet (default), NuGet, or specific sources.** |
39+
| **DependeciesVersionHosts** | User | (optional) Bot Builder dependency version to use for all hosts. **Possible values are: Latest (default), Stable, or specific version numbers.** |
40+
| **DependeciesVersionSkills** | User | (optional) Bot Builder dependency version to use for all hosts. **Possible values are: Latest (default), Stable, or specific version numbers.** |
41+
| **DependeciesVersionSkillsV3** | User | (optional) Bot Builder dependency version to use for all hosts. **Possible values are: Latest (default), Stable, or specific version numbers.** |
4242
| **ResourceSuffix** | Create Shared Resources | (optional) Suffix to add to the resource names to avoid collisions. |
4343

4444
## Run Test Scenarios Pipeline

Docs/setupPipelines.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,30 @@ The following steps will guide you through the creation of a pipeline from a YAM
55
## Requirements
66

77
- An [Azure DevOps Organization](https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/create-organization?view=azure-devops).
8-
- Access to the repository where the pipelin definition YAML file is stored.
8+
- Access to the repository where the pipeline definition YAML file is stored.
99

1010
## Steps
1111

1212
- Go to the pipeline section of your Azure DevOps organization and create a new pipeline using the classic editor.
1313

14-
![setupPipelines1](./media/setupPipelines1.png)
14+
![setupPipelines1](./media/setupPipelines1.png)
1515

1616
- Configure the repository and branch. In the configuration as code section, click on Apply for the YAML file option.
1717

18-
![setupPipelines2](./media/setupPipelines2.png)
18+
![setupPipelines2](./media/setupPipelines2.png)
1919

2020
- In the YAML tab, write the pipeline's name and select the YAML file you want to use.
2121

22-
![setupPipelines3](./media/setupPipelines3.png)
22+
![setupPipelines3](./media/setupPipelines3.png)
2323

2424
- Go to the variables tab to add all the variables that will be used in the pipeline.
2525

26-
![setupPipelines4](./media/setupPipelines4.png)
26+
![setupPipelines4](./media/setupPipelines4.png)
2727

2828
- In the triggers tab you can configure the triggers and schedules for each pipeline, all pipelines are configured to not trigger by default.
2929

30-
![setupPipelines5](./media/setupPipelines5.png)
30+
![setupPipelines5](./media/setupPipelines5.png)
3131

3232
- When you are done configuring the pipeline, save the changes.
3333

34-
![setupPipelines6](./media/setupPipelines6.png)
34+
![setupPipelines6](./media/setupPipelines6.png)

0 commit comments

Comments
 (0)