Skip to content

Commit 7505b28

Browse files
committed
[BULK UPDATE] DocuTune - Rebranding links
1 parent 996b402 commit 7505b28

File tree

17 files changed

+32
-35
lines changed

17 files changed

+32
-35
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ For more information see the [Code of Conduct FAQ](https://opensource.microsoft.
44

55
# Content repos
66

7-
> * For content contributions to `https://docs.microsoft.com/vsts`, work in the /docs folder.
8-
> * For content contributions to `docs.microsoft.com/vsts/release-notes`, work in the `/release-notes` folder.
7+
> * For content contributions to `https://learn.microsoft.com/vsts`, work in the /docs folder.
8+
> * For content contributions to `learn.microsoft.com/vsts/release-notes`, work in the `/release-notes` folder.
99
> * Contact Ryan Thompson--`ryanth` (Microsoft alias) or `@thomps23` (GitHub alias) -- for details and training on content contribution or publishing.

docs/boards/github/index.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ By connecting Azure Boards with GitHub repositories, you enable linking between
2222

2323
<br/>
2424

25-
> [!VIDEO https://docs.microsoft.com/shows/DevOps-Lab/Introducing-Azure-Boards-to-the-GitHub-Marketplace/player]
25+
> [!VIDEO https://learn.microsoft.com/shows/DevOps-Lab/Introducing-Azure-Boards-to-the-GitHub-Marketplace/player]
2626
2727
> [!NOTE]
2828
> Azure DevOps only supports integation with GitHub repositories or Azure Repos Git repositories. Integration with other Git repositories is not supported.
@@ -161,4 +161,3 @@ Once you've configured the connection, you can complete the following tasks.
161161
- [Trigger an Azure Pipelines run from GitHub Actions](../../pipelines/ecosystems/github-actions.md)
162162

163163

164-

docs/cli/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Commands:
7474
feedback : Displays information on how to provide feedback to the Azure DevOps CLI team.
7575
invoke : This command will invoke request for any DevOps area and resource. Please use
7676
only json output as the response of this command is not fixed. Helpful docs -
77-
https://docs.microsoft.com/rest/api/azure/devops/.
77+
https://learn.microsoft.com/rest/api/azure/devops/.
7878
login : Set the credential (PAT) to use for a particular organization.
7979
logout : Clear the credential for all or a particular organization.
8080
```

docs/pipelines/agents/agents.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -575,8 +575,8 @@ To trigger agent update - request body should be empty.
575575
>
576576
## Learn more
577577
578-
For more information about agents, see the following modules from the [Build applications with Azure DevOps](/learn/paths/build-applications-with-azure-devops/) learning path.
579-
* [Choose a Microsoft-hosted or self-hosted build agent](/learn/modules/host-build-agent/2-choose-a-build-agent)
580-
* [Host your own build agent in Azure Pipelines](/learn/modules/host-build-agent/)
578+
For more information about agents, see the following modules from the [Build applications with Azure DevOps](/training/paths/build-applications-with-azure-devops/) learning path.
579+
* [Choose a Microsoft-hosted or self-hosted build agent](/training/modules/host-build-agent/2-choose-a-build-agent)
580+
* [Host your own build agent in Azure Pipelines](/training/modules/host-build-agent/)
581581
582582
::: moniker-end

docs/pipelines/ecosystems/android.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ You have a working YAML file (`azure-pipelines.yml`) in your repository that's r
6363
Gradle is a common build tool used for building Android projects. For more information about your options, see the [Gradle](../tasks/build/gradle.md) task.
6464
6565
```yaml
66-
# https://docs.microsoft.com/azure/devops/pipelines/ecosystems/android
66+
# https://learn.microsoft.com/azure/devops/pipelines/ecosystems/android
6767
pool:
6868
vmImage: 'macOS-latest'
6969

docs/pipelines/ecosystems/ruby.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ For the exact versions of Ruby that are preinstalled, refer to [Microsoft-hosted
5353
Add the [Use Ruby Version](../tasks/tool/use-ruby-version.md) task to set the version of Ruby used in your pipeline. This snippet adds Ruby 2.4 or later to the path and sets subsequent pipeline tasks to use it.
5454

5555
```yaml
56-
# https://docs.microsoft.com/azure/devops/pipelines/ecosystems/ruby
56+
# https://learn.microsoft.com/azure/devops/pipelines/ecosystems/ruby
5757
pool:
5858
vmImage: 'ubuntu-latest' # other options: 'macOS-latest', 'windows-latest'
5959

docs/pipelines/ecosystems/xamarin.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ For the exact versions of Xamarin that are preinstalled, refer to [Microsoft-hos
7171
Create a file named **azure-pipelines.yml** in the root of your repository. Then, add the following snippet to your `azure-pipelines.yml` file to select the appropriate agent pool:
7272

7373
```yaml
74-
# https://docs.microsoft.com/azure/devops/pipelines/ecosystems/xamarin
74+
# https://learn.microsoft.com/azure/devops/pipelines/ecosystems/xamarin
7575
pool:
7676
vmImage: 'macOS-10.15' # For Windows, use 'windows-2019'
7777
```
@@ -175,7 +175,7 @@ You can build and test your Xamarin.Android app, Xamarin.iOS app, and related ap
175175
# Xamarin.Android and Xamarin.iOS
176176
# Build a Xamarin.Android and Xamarin.iOS app.
177177
# Add steps that test, sign, and distribute the app, save build artifacts, and more:
178-
# https://docs.microsoft.com/azure/devops/pipelines/ecosystems/xamarin
178+
# https://learn.microsoft.com/azure/devops/pipelines/ecosystems/xamarin
179179
180180
jobs:
181181

docs/pipelines/ecosystems/xcode.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ For the exact versions of Xcode that are preinstalled, refer to [Microsoft-hoste
5656
Create a file named **azure-pipelines.yml** in the root of your repository. Then, add the following snippet to your `azure-pipelines.yml` file to select the appropriate agent pool:
5757

5858
```yaml
59-
# https://docs.microsoft.com/azure/devops/pipelines/ecosystems/xcode
59+
# https://learn.microsoft.com/azure/devops/pipelines/ecosystems/xcode
6060
pool:
6161
vmImage: 'macOS-latest'
6262
```

docs/pipelines/get-started-multiplatform.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You're going to add jobs that run on three platforms.
4141

4242
```yaml
4343
# Build NodeJS Express app using Azure Pipelines
44-
# https://docs.microsoft.com/azure/devops/pipelines/ecosystems/javascript?view=azure-devops
44+
# https://learn.microsoft.com/azure/devops/pipelines/ecosystems/javascript?view=azure-devops
4545
strategy:
4646
matrix:
4747
linux:

docs/pipelines/overview-azure.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ If you're just getting started, we recommend you review and get started with the
5454
[DevOps solutions on Azure](https://azure.microsoft.com/solutions/devops/#products)
5555
:::column-end:::
5656
:::column span="3":::
57-
Use end-to-end solutions on Azure to implement DevOps practices throughout application planning, development, delivery, and operations. Apply the right combination of DevOps technologies, culture, and processes to enable continual software delivery and better value for customers. Get started with the following learn modules:
58-
- [Deploy applications with Azure DevOps](/learn/paths/deploy-applications-with-azure-devops/)
59-
- [Build applications with Azure DevOps](/learn/paths/build-applications-with-azure-devops/)
60-
- [Deploy and maintain cloud-native apps with GitHub actions and Azure Pipelines](/learn/modules/cna-deploy-maintain/)
61-
- [Load test Azure web apps by using Azure DevOps](/learn/modules/load-test-web-app-azure-devops/)
57+
Use end-to-end solutions on Azure to implement DevOps practices throughout application planning, development, delivery, and operations. Apply the right combination of DevOps technologies, culture, and processes to enable continual software delivery and better value for customers. Get started with the following Learn modules:
58+
- [Deploy applications with Azure DevOps](/training/paths/deploy-applications-with-azure-devops/)
59+
- [Build applications with Azure DevOps](/training/paths/build-applications-with-azure-devops/)
60+
- [Deploy and maintain cloud-native apps with GitHub actions and Azure Pipelines](/training/modules/cna-deploy-maintain/)
61+
- [Load test Azure web apps by using Azure DevOps](/training/modules/load-test-web-app-azure-devops/)
6262
:::column-end:::
6363
:::row-end:::
6464
---

docs/pipelines/release/azure-key-vault.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ In order to access our Azure Key Vault, we must first set up a service principal
233233
1. The text file should contain our secret: *mysecretpassword*.
234234
235235
> [!WARNING]
236-
> This tutorial is for educational purposes only. For security best practices and how to safely work with secrets, see [Manage secrets in your server apps with Azure Key Vault](/learn/modules/manage-secrets-with-azure-key-vault/).
236+
> This tutorial is for educational purposes only. For security best practices and how to safely work with secrets, see [Manage secrets in your server apps with Azure Key Vault](/training/modules/manage-secrets-with-azure-key-vault/).
237237
238238
## Clean up resources
239239

docs/pipelines/release/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ semi-automated processes with **approvals** and **on-demand deployments**.
3333
3434
See [Releases in Azure Pipelines](releases.md) to understand releases and deployments and watch the following video to see release pipelines in action.
3535

36-
> [!VIDEO https://docs.microsoft.com/Events/Microsoft-Azure/Azure-DevOps-Launch-2018/A101/player]
36+
> [!VIDEO https://learn.microsoft.com/Events/Microsoft-Azure/Azure-DevOps-Launch-2018/A101/player]
3737
3838
<a name="howrmworks"></a>
3939

docs/pipelines/tasks/deploy/app-center-distribute.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ This example pipeline builds an Android app, runs tests, and publishes the app u
6666
# Android
6767
# Build your Android project with Gradle.
6868
# Add steps that test, sign, and distribute the APK, save build artifacts, and more:
69-
# https://docs.microsoft.com/azure/devops/pipelines/ecosystems/android
69+
# https://learn.microsoft.com/azure/devops/pipelines/ecosystems/android
7070

7171
pool:
7272
vmImage: 'macOS-latest'

docs/report/analytics/analytics-permissions-prerequisites.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ In addition, consider the following actions:
132132

133133
To report on pipelines and tests results, make sure you add test tasks to the pipeline definition. To learn more, see [Build and release tasks-Test](../../pipelines/tasks/index.md#test).
134134

135-
If you're just getting started, consider reviewing this learn module,
136-
[Run quality tests in your build pipeline by using Azure Pipelines](/learn/modules/run-quality-tests-build-pipeline).
135+
If you're just getting started, consider reviewing this Learn module,
136+
[Run quality tests in your build pipeline by using Azure Pipelines](/training/modules/run-quality-tests-build-pipeline).
137137

138138
::: moniker-end
139139

@@ -147,5 +147,3 @@ If you're just getting started, consider reviewing this learn module,
147147

148148

149149

150-
151-

docs/report/sql-reports/migration-guide.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ In addition, users can set permissions for individual shared Analytics views the
8787
- [Power BI Desktop download page](/power-bi/desktop-what-is-desktop)
8888

8989
**Learn resources**:
90-
- [Run quality tests in your build pipeline by using Azure Pipelines](/learn/modules/run-quality-tests-build-pipeline)
91-
- [Run functional tests in Azure DevOps](/learn/modules/run-functional-tests-azure-pipelines)
90+
- [Run quality tests in your build pipeline by using Azure Pipelines](/training/modules/run-quality-tests-build-pipeline)
91+
- [Run functional tests in Azure DevOps](/training/modules/run-functional-tests-azure-pipelines)
9292

9393
## Next steps
9494
> [!div class="nextstepaction"]
95-
> [Get Analytics insights comparable to those provided by SQL Reporting Services reports](analytics-insights-comparable-sql-reports.md)
95+
> [Get Analytics insights comparable to those provided by SQL Reporting Services reports](analytics-insights-comparable-sql-reports.md)

docs/user-guide/work-team-explorer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ms.date: 03/03/2022
1919
You use Team Explorer to coordinate your code efforts with other team members to develop a software project. In addition, you can manage work and that is assigned to you, your team, or your projects. Team Explorer is a plug-in that installs with Visual Studio and Team Explorer Everywhere is a plug-in that installs with Eclipse. Developers can effectively collaborate using Team Explorer connected to projects hosted on Azure DevOps Services or an on-premises Azure DevOps Server (previously named Team Foundation Server (TFS)).
2020

2121
> [!TIP]
22-
> You can install the latest version of Visual Studio clients from the [Visual Studio downloads page](https://visualstudio.microsoft.com/downloads/?utm_medium=microsoft&utm_source=docs.microsoft.com&utm_campaign=button+cta&utm_content=download+vs2017).
22+
> You can install the latest version of Visual Studio clients from the [Visual Studio downloads page](https://visualstudio.microsoft.com/downloads/?utm_medium=microsoft&utm_source=learn.microsoft.com&utm_campaign=button+cta&utm_content=download+vs2017).
2323
>
2424
> Additional options for connecting to Azure DevOps Services or TFS include:
2525
> - [Team Explorer Everywhere](/previous-versions/azure/devops/all/java/download-eclipse-plug-in)

release-notes/2022/includes/pipelines/sprint-209-update.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Previously, the Pipelines UI used to show the last commit message when displayin
1515
1616
This message can be confusing, for example, when your YAML pipeline's code lives in a repository different from the one that holds the code it's building. We heard your feedback from the [Developer Community](https://developercommunity.visualstudio.com/content/idea/1030999/enabledisable-appending-the-to-the-title-of-every.html) asking us for a way to enable/disable appending the latest commit message to the title of every pipeline run.
1717

18-
With this update, we've added a new YAML property, named [`appendCommitMessageToRunName`](https://docs.microsoft.com/azure/devops/pipelines/yaml-schema/pipeline?view=azure-pipelines#pipeline-stages), that lets you do exactly that. By default, the property is set to `true`. When you set it to `false`, the pipeline run will only display the [`BuildNumber`](https://docs.microsoft.com/azure/devops/pipelines/process/run-number?view=azure-devops&tabs=yaml).
18+
With this update, we've added a new YAML property, named [`appendCommitMessageToRunName`](https://learn.microsoft.com/azure/devops/pipelines/yaml-schema/pipeline?view=azure-pipelines#pipeline-stages), that lets you do exactly that. By default, the property is set to `true`. When you set it to `false`, the pipeline run will only display the [`BuildNumber`](https://learn.microsoft.com/azure/devops/pipelines/process/run-number?view=azure-devops&tabs=yaml).
1919

2020
> [!div class="mx-imgBorder"]
2121
> ![Example of pipeline run with build number](../../media/209-pipelines-02.png)
@@ -25,7 +25,7 @@ With this update, we've added a new YAML property, named [`appendCommitMessageTo
2525
2626
### Consumed resources and template parameters in Pipelines Runs Rest API
2727

28-
The extended [Pipelines Runs REST API](https://docs.microsoft.com/rest/api/azure/devops/pipelines/runs/get?view=azure-devops-rest-7.1) now returns more types of artifacts used by a pipeline run and the parameters used to trigger that run. We enhanced the API to return the `container` and `pipeline` resources and the template parameters used in a pipeline run. You can now, for example, write compliance checks that evaluate the repositories, containers, and other pipeline runs used by a pipeline.
28+
The extended [Pipelines Runs REST API](https://learn.microsoft.com/rest/api/azure/devops/pipelines/runs/get?view=azure-devops-rest-7.1) now returns more types of artifacts used by a pipeline run and the parameters used to trigger that run. We enhanced the API to return the `container` and `pipeline` resources and the template parameters used in a pipeline run. You can now, for example, write compliance checks that evaluate the repositories, containers, and other pipeline runs used by a pipeline.
2929

3030
Here is an example of the new response body.
3131

@@ -104,7 +104,7 @@ Here is an example of the new response body.
104104

105105
### Add support for string split function in YAML template expressions
106106

107-
YAML pipelines provide you convenient ways to reduce code duplication, such as [looping through `each` value of a list](https://docs.microsoft.com/azure/devops/pipelines/process/expressions?view=azure-devops#each-keyword) or property of an object.
107+
YAML pipelines provide you convenient ways to reduce code duplication, such as [looping through `each` value of a list](https://learn.microsoft.com/azure/devops/pipelines/process/expressions?view=azure-devops#each-keyword) or property of an object.
108108

109109
Sometimes, the set of items to iterate through is represented as a string. For example, when the list of environments to deploy to is defined by the string `integration1, integration2`.
110110

@@ -126,7 +126,7 @@ jobs:
126126
127127
### Do not sync tags when fetching a Git repository
128128
129-
The [checkout task](https://docs.microsoft.com/azure/devops/pipelines/yaml-schema/steps-checkout?view=azure-pipelines) uses `--tags` option in fetching the contents of a Git repository. This causes the server to fetch all tags as well as all objects that are pointed to by those tags. This increases the time to run the task in a pipeline - particularly if you have a large repository with a number of tags. Furthermore, the checkout task syncs tags even when you enable the shallow fetch option, thereby possibly defeating its purpose. To reduce the amount of data fetched or pulled from a Git repository, we have now added a new option to the task to control the behavior of syncing tags. This option is available both in classic and YAML pipelines.
129+
The [checkout task](https://learn.microsoft.com/azure/devops/pipelines/yaml-schema/steps-checkout?view=azure-pipelines) uses `--tags` option in fetching the contents of a Git repository. This causes the server to fetch all tags as well as all objects that are pointed to by those tags. This increases the time to run the task in a pipeline - particularly if you have a large repository with a number of tags. Furthermore, the checkout task syncs tags even when you enable the shallow fetch option, thereby possibly defeating its purpose. To reduce the amount of data fetched or pulled from a Git repository, we have now added a new option to the task to control the behavior of syncing tags. This option is available both in classic and YAML pipelines.
130130

131131
#### [YAML](#tab/yaml/)
132132

@@ -177,4 +177,4 @@ To help you better identify which pipelines are using the ubuntu-18.04 image, we
177177
* November 4, 22:00 UTC - November 5, 04:00 UTC
178178
* November 11, 04:00 UTC - November 11, 10:00 UTC
179179
* November 18, 06:00 UTC - November 18, 12:00 UTC
180-
* November 25, 08:00 UTC - November 25, 14:00 UTC
180+
* November 25, 08:00 UTC - November 25, 14:00 UTC

0 commit comments

Comments
 (0)