Skip to content

Commit 10822cc

Browse files
author
iscaltritti-sw
committed
Fix broken links
1 parent ee0bcfd commit 10822cc

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

Docs/pipelines.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
| Variable Name | Source | Description |
1010
| - | - | - |
11-
| **AzureSubscription** | Azure DevOps | Name of the Azure Resource Manager Service Connection configured in the DevOps organization. Click [here](Guides/addARMServiceConnection.md) to see how to set it up. |
12-
| **KeyVaultObjectId** | Azure | Object ID of the Service Principal configured in the pipeline. Click [here](Guides/getServicePrincipalObjectID.md) to see how to get it. |
11+
| **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. |
12+
| **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. |
1414
| **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. |
@@ -18,17 +18,17 @@
1818

1919
- 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)
2020
- Schedule: Nightly or on demand.
21-
- YAML: [build\yaml\deployBotResources\deployBotResources.yml](../build/yaml/deploybotresources/deployBotResources.yml)
21+
- YAML: [build\yaml\deployBotResources\deployBotResources.yml](../build/yaml/deployBotResources/deployBotResources.yml)
2222

2323
| Variable Name | Source | Description |
2424
| - | - | - |
2525
| **AppServicePlanGroupLinux** | Create Shared Resources | Name of the resource group containing the App Service Plan for Python. |
2626
| **AppServicePlanNameLinux** | Create Shared Resources | Name of the App Service Plan for Python. |
2727
| **AppServicePlanGroup** | Create Shared Resources | Name of the resource group containing the App Service Plan for DotNet and JS. |
2828
| **AppServicePlanName** | Create Shared Resources | Name of the App Service Plan for DotNet and JS. |
29-
| **AzureDeploymentPassword** | [Webapp Deployment User](https://docs.microsoft.com/en-us/cli/azure/webapp/deployment/user?view=azure-cli-latest#az-webapp-deployment-user-set) | Azure Deployment Password, required to deploy Python bots. Click [here](Guides/createWebAppDeploymentCredentials.md) to see how to set it up. |
30-
| **AzureDeploymentUser** | [Webapp Deployment User](https://docs.microsoft.com/en-us/cli/azure/webapp/deployment/user?view=azure-cli-latest#az-webapp-deployment-user-set) | Azure Deployment User, required to deploy Python bots. Click [here](Guides/createWebAppDeploymentCredentials.md) to see how to how to set it up. |
31-
| **AzureSubscription** | Azure DevOps | Name of the Azure Resource Manager Service Connection configured in the DevOps organization. Click [here](Guides/addARMServiceConnection.md) to see how to set it up. |
29+
| **AzureDeploymentPassword** | [Webapp Deployment User](https://docs.microsoft.com/en-us/cli/azure/webapp/deployment/user?view=azure-cli-latest#az-webapp-deployment-user-set) | Azure Deployment Password, required to deploy Python bots. Click [here](./createWebAppDeploymentCredentials.md) to see how to set it up. |
30+
| **AzureDeploymentUser** | [Webapp Deployment User](https://docs.microsoft.com/en-us/cli/azure/webapp/deployment/user?view=azure-cli-latest#az-webapp-deployment-user-set) | Azure Deployment User, required to deploy Python bots. Click [here](./createWebAppDeploymentCredentials.md) to see how to how to set it up. |
31+
| **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. |
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. |
@@ -49,7 +49,7 @@
4949

5050
| Variable Name | Source | Description |
5151
| - | - | - |
52-
| **AzureSubscription** | Azure DevOps | Name of the Azure Resource Manager Service Connection configured in the DevOps organization. Click [here](Guides/addARMServiceConnection.md) to see how to set it up. |
52+
| **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. |
5353
| **ResourceGroup** | User | Prefix of the resource groups where the bots are deployed. |
5454
| **[BotName](#botnames) + AppId** | [App Registration Portal](https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade) | (optional) App ID to use. If not configured, it will be retrieved from the key vault. |
5555
| **ResourceSuffix** | Create Shared Resources | (optional) Suffix added to the resource names. |
@@ -62,7 +62,7 @@
6262

6363
| Variable Name | Source | Description |
6464
| - | - | - |
65-
| **AzureSubscription** | Azure DevOps | Name of the Azure Resource Manager Service Connection configured in the DevOps organization. Click [here](Guides/addARMServiceConnection.md) to see how to set it up. |
65+
| **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. |
6666
| **DeployResourceGroup** | Deploy Bot Resources | Prefix of the resource groups where the bots were deployed. |
6767
| **SharedResourceGroup** | Create Shared Resources | Name for the resource groups that contains the shared resources. |
6868
| **ResourceSuffix** | Create Shared Resources | (optional) Suffix added to the resource names. |

Docs/pipelinesLegacy.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ In the following table shows which YAML corresponds with each host-skill pair to
3939

4040
| Host\Skill | C# Net Core 3.1 | JavaScript | Python | C# Net Core 2.1 | v3 Javascript | v3 C# |
4141
| - | - | - | - | - | - | - |
42-
| **C# Net Core 3.1** | [dotnetHost2DotnetSkill.yml](../../build/yaml/dotnetHost2dotnetSkill.yml) | [dotnetHost2JavascriptSkill.yml](../../build/yaml/dotnetHost2JavascriptSkill.yml) | [dotnetHost2PythonSkill.yml](../../build/yaml/dotnetHost2PythonSkill.yml) | [dotnetHost2DotnetSkill.yml](../../build/yaml/dotnetHost2dotnetSkill.yml) | [dotnetHost2JavascriptV3Skill.yml](../../build/yaml/dotnetHost2JavascriptV3Skill.yml) | [dotnetHost2DotnetV3Skill.yml](../../build/yaml/dotnetHost2DotnetV3Skill.yml) |
43-
| **JavaScript** | [javascriptHost2DotnetSkill.yml](../../build/yaml/javascriptHost2DotnetSkill.yml) | [javascriptHost2JavascriptSkill.yml](../../build/yaml/javascriptHost2JavascriptSkill.yml) | [javascriptHost2PythonSkill.yml](../../build/yaml/javascriptHost2PythonSkill.yml) | [javascriptHost2DotnetSkill.yml](../../build/yaml/javascriptHost2DotnetSkill.yml) | [javascriptHost2JavascriptV3Skill.yml](../../build/yaml/javascriptHost2JavascriptV3Skill.yml) | [javascriptHost2DotnetV3Skill.yml](../../build/yaml/javascriptHost2DotnetV3Skill.yml) |
44-
| **Python** | [pythonHost2DotnetSkill.yml](../../build/yaml/pythonHost2DotnetSkill.yml) | [pythonHost2JavascriptSkill.yml](../../build/yaml/pythonHost2JavascriptSkill.yml) | [pythonHost2PythonSkill.yml](../../build/yaml/pythonHost2PythonSkill.yml) | [pythonHost2DotnetSkill.yml](../../build/yaml/pythonHost2DotnetSkill.yml) | [pythonHost2JavascriptV3Skill.yml](../../build/yaml/pythonHost2JavascriptV3Skill.yml) | [pythonHost2DotnetV3Skill.yml](../../build/yaml/pythonHost2DotnetSkill.yml) |
45-
| **C# Net Core 2.1** | [dotnetHost2DotnetSkill.yml](../../build/yaml/dotnetHost2dotnetSkill.yml) | [dotnetHost2JavascriptSkill.yml](../../build/yaml/dotnetHost2JavascriptSkill.yml) | [dotnetHost2PythonSkill.yml](../../build/yaml/dotnetHost2PythonSkill.yml) | [dotnetHost2DotnetSkill.yml](../../build/yaml/dotnetHost2dotnetSkill.yml) | [dotnetHost2JavascriptV3Skill.yml](../../build/yaml/dotnetHost2JavascriptV3Skill.yml) | [dotnetHost2DotnetV3Skill.yml](../../build/yaml/dotnetHost2DotnetV3Skill.yml) |
42+
| **C# Net Core 3.1** | [dotnetHost2DotnetSkill.yml(../build/yaml/dotnetHost2dotnetSkill.yml) | [dotnetHost2JavascriptSkill.yml](../build/yaml/dotnetHost2JavascriptSkill.yml) | [dotnetHost2PythonSkill.yml](../build/yaml/dotnetHost2PythonSkill.yml) | [dotnetHost2DotnetSkill.yml](../build/yaml/dotnetHost2dotnetSkill.yml) | [dotnetHost2JavascriptV3Skill.yml](../build/yaml/dotnetHost2JavascriptV3Skill.yml) | [dotnetHost2DotnetV3Skill.yml](../build/yaml/dotnetHost2DotnetV3Skill.yml) |
43+
| **JavaScript** | [javascriptHost2DotnetSkill.yml](../build/yaml/javascriptHost2DotnetSkill.yml) | [javascriptHost2JavascriptSkill.yml](../build/yaml/javascriptHost2JavascriptSkill.yml) | [javascriptHost2PythonSkill.yml](../build/yaml/javascriptHost2PythonSkill.yml) | [javascriptHost2DotnetSkill.yml](../build/yaml/javascriptHost2DotnetSkill.yml) | [javascriptHost2JavascriptV3Skill.yml](../build/yaml/javascriptHost2JavascriptV3Skill.yml) | [javascriptHost2DotnetV3Skill.yml](../build/yaml/javascriptHost2DotnetV3Skill.yml) |
44+
| **Python** | [pythonHost2DotnetSkill.yml](../build/yaml/pythonHost2DotnetSkill.yml) | [pythonHost2JavascriptSkill.yml](../build/yaml/pythonHost2JavascriptSkill.yml) | [pythonHost2PythonSkill.yml](../build/yaml/pythonHost2PythonSkill.yml) | [pythonHost2DotnetSkill.yml](../build/yaml/pythonHost2DotnetSkill.yml) | [pythonHost2JavascriptV3Skill.yml](../build/yaml/pythonHost2JavascriptV3Skill.yml) | [pythonHost2DotnetV3Skill.yml](../build/yaml/pythonHost2DotnetSkill.yml) |
45+
| **C# Net Core 2.1** | [dotnetHost2DotnetSkill.yml](../build/yaml/dotnetHost2dotnetSkill.yml) | [dotnetHost2JavascriptSkill.yml](../build/yaml/dotnetHost2JavascriptSkill.yml) | [dotnetHost2PythonSkill.yml](../build/yaml/dotnetHost2PythonSkill.yml) | [dotnetHost2DotnetSkill.yml](../build/yaml/dotnetHost2dotnetSkill.yml) | [dotnetHost2JavascriptV3Skill.yml](../build/yaml/dotnetHost2JavascriptV3Skill.yml) | [dotnetHost2DotnetV3Skill.yml](../build/yaml/dotnetHost2DotnetV3Skill.yml) |
4646

4747
#### Variables
4848

0 commit comments

Comments
 (0)