You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/pipelines/process/scheduled-triggers.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -315,7 +315,7 @@ Wildcard | `*` | Matches all values for this field
315
315
Single value | `5` | Specifies a single value for this field
316
316
Comma delimited | `3,5,6` | Specifies multiple values for this field. Multiple formats can be combined, like `1,3-6`
317
317
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
319
319
320
320
Example | Cron expression
321
321
--------|----------------
@@ -391,7 +391,7 @@ YAML pipelines are not available on TFS.
391
391
392
392
#### [Classic](#tab/classic/)
393
393
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.
395
395
396
396
::: moniker range=">= azure-devops-2019"
397
397
@@ -619,7 +619,7 @@ In the second schedule, **Sunday 3:00 AM (UTC) weekly latest version build**, th
619
619
620
620
* Check if your pipeline is paused or disabled. Select **Settings** for your pipeline.
621
621
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.
623
623
624
624
* 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.
Copy file name to clipboardExpand all lines: docs/pipelines/repos/github.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -131,7 +131,7 @@ There are 3 authentication types for granting Azure Pipelines access to your Git
131
131
132
132
### GitHub app authentication
133
133
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.
135
135
136
136
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).
137
137
@@ -143,7 +143,7 @@ If you install the GitHub App for all repositories in a GitHub organization, you
143
143
144
144
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.
145
145
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.
147
147
148
148
- 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.
149
149
@@ -293,7 +293,7 @@ You can specify the full name of the branch (for example, `master`) or a wildcar
293
293
> [!NOTE]
294
294
> 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.
295
295
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.
297
297
298
298
If no `pr` triggers appear in your YAML file, pull request validations are automatically enabled for all
299
299
branches, as if you wrote the following `pr` trigger. This configuration triggers a build when any
Copy file name to clipboardExpand all lines: docs/pipelines/repos/on-premises-bitbucket.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ If the Bitbucket server cannot be reached from Azure Pipelines, you have two opt
44
44
45
45
### Reachable from Microsoft-hosted agents
46
46
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.
48
48
49
49
### Not reachable from Microsoft-hosted agents
50
50
@@ -65,7 +65,7 @@ When you use **Other Git** connection to set up a classic pipeline, disable comm
65
65
66
66
If you want to enhance this experience, it is important that you enable communication from Azure Pipelines to Bitbucket Server.
67
67
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.
69
69
70
70
Allow Azure Pipelines to attempt accessing the Git server in the **Other Git** service connection.
0 commit comments