Skip to content

Commit cd55606

Browse files
committed
BitBucket -> Bitbucket
1 parent ff0bdcb commit cd55606

10 files changed

+48
-48
lines changed

docs/pipelines/build/triggers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ Continuous integration (CI) triggers vary based on the type of repository you bu
2525

2626
- [CI triggers in Azure Repos Git](../repos/azure-repos-git.md#ci-triggers)
2727
- [CI triggers in GitHub](../repos/github.md#ci-triggers)
28-
- [CI triggers in BitBucket Cloud](../repos/bitbucket.md#ci-triggers)
28+
- [CI triggers in Bitbucket Cloud](../repos/bitbucket.md#ci-triggers)
2929
- [CI triggers in TFVC](../repos/tfvc.md#ci-triggers)
3030

3131
<a name="pr-triggers"></a>
3232
Pull request validation (PR) triggers also vary based on the type of repository.
3333

3434
- [PR triggers in Azure Repos Git](../repos/azure-repos-git.md#pr-triggers)
3535
- [PR triggers in GitHub](../repos/github.md#pr-triggers)
36-
- [PR triggers in BitBucket Cloud](../repos/bitbucket.md#pr-triggers)
36+
- [PR triggers in Bitbucket Cloud](../repos/bitbucket.md#pr-triggers)
3737

3838
[Gated check-in](../repos/tfvc.md#gated) is supported for TFVC repositories.
3939

docs/pipelines/index.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ landingContent:
8686
url: ./repos/azure-repos-git.md
8787
- text: Team Foundation version control
8888
url: ./repos/tfvc.md
89-
- text: BitBucket Cloud
89+
- text: Bitbucket Cloud
9090
url: ./repos/pipeline-options-for-git.md
9191
- text: Subversion
9292
url: ./repos/pipeline-options-for-git.md

docs/pipelines/process/resources.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ The `git` type refers to Azure Repos Git repos.
402402
GitHub Enterprise repos require a [GitHub Enterprise service connection](../library/service-endpoints.md#sep-githubent) for authorization.
403403

404404
- If you specify `type: bitbucket`, the `name` value is the full name of the Bitbucket Cloud repo and includes the user or organization.
405-
An example is `name: MyBitBucket/vscode`.
405+
An example is `name: MyBitbucket/vscode`.
406406
Bitbucket Cloud repos require a [Bitbucket Cloud service connection](../library/service-endpoints.md#sep-bbucket) for authorization.
407407

408408

docs/pipelines/repos/bitbucket.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,56 @@
11
---
2-
title: Build BitBucket Cloud repositories
3-
description: Using a BitBucket Cloud repository with Azure Pipelines
2+
title: Build Bitbucket Cloud repositories
3+
description: Using a Bitbucket Cloud repository with Azure Pipelines
44
ms.topic: reference
55
ms.author: vijayma
66
author: vijayma
77
ms.date: 07/07/2020
88
monikerRange: azure-devops
99
---
1010

11-
# Build BitBucket Cloud repositories
11+
# Build Bitbucket Cloud repositories
1212

1313
[!INCLUDE [version-team-services](../includes/version-team-services.md)]
1414

15-
Azure Pipelines can automatically build and validate every pull request and commit to your BitBucket Cloud repository. This article describes how to configure the integration between BitBucket Cloud and Azure Pipelines.
15+
Azure Pipelines can automatically build and validate every pull request and commit to your Bitbucket Cloud repository. This article describes how to configure the integration between Bitbucket Cloud and Azure Pipelines.
1616

17-
BitBucket and Azure Pipelines are two independent services that integrate well together. Your BitBucket Cloud users do not automatically get access to Azure Pipelines. You must add them explicitly to Azure Pipelines.
17+
Bitbucket and Azure Pipelines are two independent services that integrate well together. Your Bitbucket Cloud users do not automatically get access to Azure Pipelines. You must add them explicitly to Azure Pipelines.
1818

19-
## Access to BitBucket repositories
19+
## Access to Bitbucket repositories
2020

2121
# [YAML](#tab/yaml/)
2222

23-
You create a new pipeline by first selecting a BitBucket Cloud repository and then a YAML file in that repository. The repository in which the YAML file is present is called `self` repository. By default, this is the repository that your pipeline builds.
23+
You create a new pipeline by first selecting a Bitbucket Cloud repository and then a YAML file in that repository. The repository in which the YAML file is present is called `self` repository. By default, this is the repository that your pipeline builds.
2424

2525
You can later configure your pipeline to check out a different repository or multiple repositories. To learn how to do this, see [multi-repo checkout](multi-repo-checkout.md).
2626

2727
# [Classic](#tab/classic/)
2828

29-
You create a new pipeline by first selecting **BitBucket Cloud** for repository type, and then one of the repositories you have access to.
29+
You create a new pipeline by first selecting **Bitbucket Cloud** for repository type, and then one of the repositories you have access to.
3030

3131
---
3232

3333
Azure Pipelines must be granted access to your repositories to trigger their builds, and fetch their code during builds.
3434

35-
There are 2 authentication types for granting Azure Pipelines access to your BitBucket Cloud repositories while creating a pipeline.
35+
There are 2 authentication types for granting Azure Pipelines access to your Bitbucket Cloud repositories while creating a pipeline.
3636

3737
| Authentication type | Pipelines run using |
3838
|--------------------------------|----------------------------------|
39-
| 1. [OAuth](#oauth-authentication) | Your personal BitBucket identity |
40-
| 2. [Username and password](#password-authentication) | Your personal BitBucket identity |
39+
| 1. [OAuth](#oauth-authentication) | Your personal Bitbucket identity |
40+
| 2. [Username and password](#password-authentication) | Your personal Bitbucket identity |
4141

4242
### OAuth authentication
4343

44-
OAuth is the simplest authentication type to get started with for repositories in your BitBucket account. BitBucket status updates will be performed on behalf of your personal BitBucket identity. For pipelines to keep working, your repository access must remain active.
44+
OAuth is the simplest authentication type to get started with for repositories in your Bitbucket account. Bitbucket status updates will be performed on behalf of your personal Bitbucket identity. For pipelines to keep working, your repository access must remain active.
4545

46-
To use OAuth, login to BitBucket when promoted during pipeline creation. Then, click **Authorize** to authorize with OAuth. An OAuth connection will be saved in your Azure DevOps project for later use, as well as used in the pipeline being created.
46+
To use OAuth, login to Bitbucket when promoted during pipeline creation. Then, click **Authorize** to authorize with OAuth. An OAuth connection will be saved in your Azure DevOps project for later use, as well as used in the pipeline being created.
4747

4848
### Password authentication
4949

50-
Builds and BitBucket status updates will be performed on behalf of your personal identity. For builds to keep working, your repository access must remain active.
50+
Builds and Bitbucket status updates will be performed on behalf of your personal identity. For builds to keep working, your repository access must remain active.
5151

5252
To create a password connection, visit [Service connections](../library/service-endpoints.md) in your Azure DevOps project settings.
53-
Create a new BitBucket service connection and provide the user name and password to connect to your BitBucket Cloud repository.
53+
Create a new Bitbucket service connection and provide the user name and password to connect to your Bitbucket Cloud repository.
5454

5555
## CI triggers
5656

@@ -61,7 +61,7 @@ Continuous integration (CI) triggers cause a pipeline to run whenever you push a
6161
[!INCLUDE [ci-triggers](includes/ci-triggers1.md)]
6262

6363
> [!NOTE]
64-
> For Bitbucket Cloud repos, using `branches` syntax is the only way to specify tag triggers. The `tags:` syntax is not supported for BitBucket.
64+
> For Bitbucket Cloud repos, using `branches` syntax is the only way to specify tag triggers. The `tags:` syntax is not supported for Bitbucket.
6565
6666
[!INCLUDE [ci-triggers](includes/ci-triggers3.md)]
6767

@@ -115,7 +115,7 @@ You can specify the full name of the branch (for example, `master`) or a wildcar
115115
> [!NOTE]
116116
> If you use [templates](../process/templates.md) to author YAML files, then you can only specify triggers in the main YAML file for the pipeline. You cannot specify triggers in the template files.
117117

118-
BitBucket creates a new _ref_ when a pull request is created. The ref points to a _merge commit_, which is the merged code between the source and target branches of the pull request. The PR validation pipeline builds the commit this ref points to. This means that the YAML file that is used to run the pipeline is also a merge between the source and the target branch. As a result, the changes you make to the YAML file in source branch of the pull request can override the behavior defined by the YAML file in target branch.
118+
Bitbucket creates a new _ref_ when a pull request is created. The ref points to a _merge commit_, which is the merged code between the source and target branches of the pull request. The PR validation pipeline builds the commit this ref points to. This means that the YAML file that is used to run the pipeline is also a merge between the source and the target branch. As a result, the changes you make to the YAML file in source branch of the pull request can override the behavior defined by the YAML file in target branch.
119119

120120
If no `pr` triggers appear in your YAML file, pull request validations are automatically enabled for all
121121
branches, as if you wrote the following `pr` trigger. This configuration triggers a build when any
@@ -204,7 +204,7 @@ For included branches, a build will be triggered on each push to a pull request
204204

205205
## FAQ
206206

207-
Problems related to BitBucket integration fall into the following categories:
207+
Problems related to Bitbucket integration fall into the following categories:
208208

209209
* **[Failing triggers](#failing-triggers):** My pipeline is not being triggered when I push an update to the repo.
210210
* **[Wrong version](#wrong-version):** My pipeline runs, but it is using an unexpected version of the source/YAML.
@@ -213,7 +213,7 @@ Problems related to BitBucket integration fall into the following categories:
213213

214214
[!INCLUDE [qa](includes/qa2.md)]
215215

216-
* Webhooks are used to communicate updates from BitBucket to Azure Pipelines. In BitBucket, navigate to the settings for your repository, then to Webhooks. Verify that the webhooks exist.
216+
* Webhooks are used to communicate updates from Bitbucket to Azure Pipelines. In Bitbucket, navigate to the settings for your repository, then to Webhooks. Verify that the webhooks exist.
217217

218218
[!INCLUDE [qa](includes/qa3.md)]
219219

docs/pipelines/repos/github-enterprise.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Problems related to GitHub Enterprise integration fall into the following catego
112112

113113
### Failing checkout
114114

115-
Do you use Microsoft-hosted agents? If so, these agents may not be able to reach your BitBucket server. See [Not reachable from Microsoft-hosted agents](#not-reachable-from-microsoft-hosted-agents) for more information.
115+
Do you use Microsoft-hosted agents? If so, these agents may not be able to reach your Bitbucket server. See [Not reachable from Microsoft-hosted agents](#not-reachable-from-microsoft-hosted-agents) for more information.
116116

117117
### Wrong version
118118

docs/pipelines/repos/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ YAML pipelines are a new form of pipelines that have been introduced in Azure De
2626
| [GitHub](github.md) |Yes|Yes|No|No
2727
| [GitHub Enterprise Server](github-enterprise.md) |Yes|Yes|TFS 2018.2 and higher|No
2828
| [Bitbucket Cloud](bitbucket.md) |Yes|Yes|No|No
29-
| [BitBucket Server](on-premises-bitbucket.md) |No|Yes|Yes|Yes
29+
| [Bitbucket Server](on-premises-bitbucket.md) |No|Yes|Yes|Yes
3030
| Subversion |No|Yes|Yes|No|

docs/pipelines/repos/multi-repo-checkout.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ You can trigger a pipeline when an update is pushed to the `self` repository or
141141
- You keep your YAML file in a separate repository from the application code. You want to trigger the pipeline every time an update is pushed to the application repository.
142142

143143
> [!NOTE]
144-
> Repository resource triggers only work for Azure Repos Git repositories at present. They do not work for GitHub or BitBucket repository resources.
144+
> Repository resource triggers only work for Azure Repos Git repositories at present. They do not work for GitHub or Bitbucket repository resources.
145145

146146
If you do not specify a `trigger` section in a repository resource, then the pipeline won't be triggered by changes to that repository. If you specify a `trigger` section, then the behavior for triggering is similar to how CI triggers work for the self repository.
147147

0 commit comments

Comments
 (0)