Skip to content

Commit 084960d

Browse files
committed
addressed feedback
1 parent 6493e7a commit 084960d

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

docs/pipelines/includes/information-run-include.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ An informational run tells you Azure DevOps failed to retrieve a YAML pipeline's
99

1010
An informational run looks like in the following screenshot.
1111

12-
:::image type="content" source="../process/media/pipeline-information-run.png" alt-text="Information pipeline run.":::
12+
:::image type="content" source="../process/media/pipeline-information-run.png" alt-text="Example of an informational pipeline run.":::
1313

1414
You can recognize an informational run by the following attributes:
1515
- Status is `Canceled`

docs/pipelines/process/scheduled-triggers.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ Wildcard | `*` | Matches all values for this field
315315
Single value | `5` | Specifies a single value for this field
316316
Comma delimited | `3,5,6` | Specifies multiple values for this field. Multiple formats can be combined, like `1,3-6`
317317
Ranges | `1-3` | The inclusive range of values for this field
318-
Intervals | `*/4` or `1-5/2` | Intervals to match for this field, such as every 4th value or the range 1-5 with a step interval of 2
318+
Intervals | `*/4` or `1-5/2` | Intervals to match for this field, such as every fourth value or the range 1-5 with a step interval of 2
319319
320320
Example | Cron expression
321321
--------|----------------
@@ -391,7 +391,7 @@ YAML pipelines are not available on TFS.
391391

392392
#### [Classic](#tab/classic/)
393393

394-
Classic scheduled pipelines don't have a **Scheduled runs** view, but you can can view the schedule for a pipeline in the classic schedule editor for your pipeline.
394+
Classic scheduled pipelines don't have a **Scheduled runs** view, but you can view the schedule for a pipeline in the classic schedule editor for your pipeline.
395395

396396
::: moniker range=">= azure-devops-2019"
397397

@@ -619,7 +619,7 @@ In the second schedule, **Sunday 3:00 AM (UTC) weekly latest version build**, th
619619

620620
* Check if your pipeline is paused or disabled. Select **Settings** for your pipeline.
621621

622-
* Check the next few runs that Azure Pipelines has scheduled for your pipeline. You can find these by selecting the **Scheduled runs** action in your pipeline. If you do not see the schedules that you expected, make a small trivial change to you YAML file, and push the update to your repository. This should re-sync the schedules.
622+
* Check the next few runs that Azure Pipelines has scheduled for your pipeline. You can find these by selecting the **Scheduled runs** action in your pipeline. If you do not see the schedules that you expected, make a small trivial change to your YAML file, and push the update to your repository. This should re-sync the schedules.
623623

624624
* If you use GitHub for storing your code, it is possible that Azure Pipelines may have been throttled by GitHub when it tried to start a new run. Check if you can start a new run manually.
625625

docs/pipelines/repos/github.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ There are 3 authentication types for granting Azure Pipelines access to your Git
131131

132132
### GitHub app authentication
133133

134-
The Azure Pipelines GitHub App is the **recommended** authentication type for continuous integration pipelines. By installing the GitHub App in your GitHub account or organization, your pipeline can run without using your personal GitHub identity. Builds and GitHub status updates will be performed using the Azure Pipelines identity. The app works with [GitHub Checks](https://developer.github.com/v3/checks/) to display build, test, and code coverage results in GitHub.
134+
The Azure Pipelines GitHub App is the **recommended** authentication type for continuous integration pipelines. After you install the GitHub App in your GitHub account or organization, your pipeline will run without using your personal GitHub identity. Builds and GitHub status updates will be performed using the Azure Pipelines identity. The app works with [GitHub Checks](https://developer.github.com/v3/checks/) to display build, test, and code coverage results in GitHub.
135135

136136
To use the GitHub App, install it in your GitHub organization or user account for some or all repositories. The GitHub App can be installed and uninstalled from the app's [homepage](https://github.com/apps/azure-pipelines).
137137

@@ -143,7 +143,7 @@ If you install the GitHub App for all repositories in a GitHub organization, you
143143

144144
Installation of Azure Pipelines GitHub app requires you to be a GitHub organization owner or repository admin. In addition, to create a pipeline for a GitHub repository with continuous integration and pull request triggers, you must have the required GitHub permissions configured. Otherwise, **the repository will not appear** in the repository list while creating a pipeline. Depending on the authentication type and ownership of the repository, ensure that the appropriate access is configured.
145145

146-
- If the repo is in your personal GitHub account, install the Azure Pipelines GitHub App in your personal GitHub account. You will be able to list this repository when create the pipeline in Azure Pipelines.
146+
- If the repo is in your personal GitHub account, install the Azure Pipelines GitHub App in your personal GitHub account. You will be able to list this repository when you create the pipeline in Azure Pipelines.
147147

148148
- If the repo is in someone else's personal GitHub account, the other person must install the Azure Pipelines GitHub App in their personal GitHub account. You must be added as a collaborator in the repository's settings under "Collaborators". Accept the invitation to be a collaborator using the link that is emailed to you. Once you have done so, you can create a pipeline for that repository.
149149

@@ -293,7 +293,7 @@ You can specify the full name of the branch (for example, `master`) or a wildcar
293293
> [!NOTE]
294294
> 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.
295295

296-
GitHub 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.
296+
GitHub 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.
297297

298298
If no `pr` triggers appear in your YAML file, pull request validations are automatically enabled for all
299299
branches, as if you wrote the following `pr` trigger. This configuration triggers a build when any

docs/pipelines/repos/on-premises-bitbucket.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ If the Bitbucket server cannot be reached from Azure Pipelines, you have two opt
4444

4545
### Reachable from Microsoft-hosted agents
4646

47-
Another decision you possibly have to make is whether to use Microsoft-hosted agents or self-hosted agents to run your pipelines. This often comes down to whether Microsoft-hosted agents can reach your server. To check whether they can, create a simple pipeline to use Microsoft-hosted agents and make sure to add a step to checkout source code from your server. If this passes, then you can continue using Microsoft-hosted agents.
47+
Another decision you possibly have to make is whether to use Microsoft-hosted agents or self-hosted agents to run your pipelines. This often comes down to whether Microsoft-hosted agents can reach your server. To check whether they can, create a pipeline to use Microsoft-hosted agents and make sure to add a step to check out source code from your server. If this passes, then you can continue using Microsoft-hosted agents.
4848

4949
### Not reachable from Microsoft-hosted agents
5050

@@ -65,7 +65,7 @@ When you use **Other Git** connection to set up a classic pipeline, disable comm
6565

6666
If you want to enhance this experience, it is important that you enable communication from Azure Pipelines to Bitbucket Server.
6767

68-
To allow traffic from Azure DevOps to reach your Bitbucket Server, add the IP addresses or service tags specified in [Inbound connections](../../organizations/security/allow-list-ip-url.md#inbound-connections) to your firewall's allow-list. If you use ExpressRoute, make sure to also include [ExpressRoute IP ranges](../../organizations/security/allow-list-ip-url.md#azure-devops-expressroute-connections) to your firewall's allow-list.
68+
To allow traffic from Azure DevOps to reach your Bitbucket Server, add the IP addresses or service tags specified in [Inbound connections](../../organizations/security/allow-list-ip-url.md#inbound-connections) to your firewall's allowlist. If you use ExpressRoute, make sure to also include [ExpressRoute IP ranges](../../organizations/security/allow-list-ip-url.md#azure-devops-expressroute-connections) to your firewall's allowlist.
6969

7070
Allow Azure Pipelines to attempt accessing the Git server in the **Other Git** service connection.
7171

0 commit comments

Comments
 (0)