Skip to content

Commit 6a4a3a1

Browse files
committed
fix warnings and remove pricing
1 parent c514a68 commit 6a4a3a1

File tree

5 files changed

+11
-25
lines changed

5 files changed

+11
-25
lines changed

docs/pipelines/process/phases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ YAML is not yet supported in TFS.
807807
#### [Classic](#tab/classic/)
808808
When you run a pipeline on a self-hosted agent, by default, none of the sub-directories are cleaned in between two consecutive runs. As a result, you can run incremental builds and deployments, provided that tasks are implemented to do that. However, you can override this behavior using the `Clean build` option under `Get sources` task. The options vary depending on the type of repository that you use.
809809

810-
- [GitHub](../repos/github.md#get-the-source-code)
810+
- [GitHub](../repos/github.md#checkout)
811811
- [Azure Repos Git](../repos/azure-repos-git.md)
812812
- [TFVC](../repos/tfvc.md)
813813

docs/pipelines/process/variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ steps:
482482
```
483483

484484
> [!IMPORTANT]
485-
> By default with GitHub repositories, secret variables associated with your pipeline aren't made available to pull request builds of forks. For more information, see [Validate contributions from forks](../repos/github.md#validate-contributions-from-forks).
485+
> By default with GitHub repositories, secret variables associated with your pipeline aren't made available to pull request builds of forks. For more information, see [Contributions from forks](../repos/github.md#contributions-from-forks).
486486

487487
::: moniker-end
488488
::: moniker range="< azure-devops-2019"
@@ -496,7 +496,7 @@ Each task that needs to use the secret as an environment variable does remapping
496496

497497

498498
> [!IMPORTANT]
499-
> By default with GitHub repositories, secret variables associated with your pipeline aren't made available to pull request builds of forks. For more information, see [Validate contributions from forks](../repos/github.md#validate-contributions-from-forks).
499+
> By default with GitHub repositories, secret variables associated with your pipeline aren't made available to pull request builds of forks. For more information, see [Contributions from forks](../repos/github.md#contributions-from-forks).
500500

501501
#### [Azure DevOps CLI](#tab/azure-devops-cli/)
502502

docs/pipelines/repos/bitbucket.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Azure Pipelines can automatically build and validate every pull request and comm
1616

1717
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-
## Choose a repository to build
19+
## Access to BitBucket repositories
2020

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

@@ -202,16 +202,6 @@ For included branches, a build will be triggered on each push to a pull request
202202

203203
---
204204

205-
## Pricing
206-
207-
Azure Pipelines is free for BitBucket Cloud repositories, with multiple free offerings available depending on whether your BitBucket repository is public or private.
208-
209-
If your BitBucket repository is open source, you can make your Azure DevOps project **public** so that anyone can view your pipeline's build results, logs, and test results without signing in. When users outside your organization fork your repository and submit pull requests, they can view the status of builds that automatically validate those pull requests. If both your BitBucket repository and your pipeline are public, you can run up to 10 parallel jobs in Azure Pipelines for free. These free jobs have a maximum timeout of 360 minutes (6 hours) each.
210-
211-
If either your BitBucket repository or your pipeline is private, we still provide a free tier. In this tier, you can run one free parallel job that can run up to 60 minutes each time until you've used 1800 minutes per month. When the free tier is no longer sufficient, you can purchase additional Microsoft-hosted parallel jobs.
212-
213-
Learn more about pricing based on [parallel jobs](../licensing/concurrent-jobs.md).
214-
215205
## FAQ
216206

217207
[!INCLUDE [qa](includes/qa1.md)]

docs/pipelines/repos/github.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -514,16 +514,6 @@ GitHub allows three options when one or more Check Runs fail for a PR/commit. Yo
514514

515515
Clicking on the "Re-run" link next to the Check Run name will result in Azure Pipelines retrying the run that generated the Check Run. The resultant run will have the same run number and will use the same version of the source code, configuration, and YAML file as the initial build. Only those jobs that failed in the initial run and any dependent downstream jobs will be run again. Clicking on the "Re-run all failing checks" link will have the same effect. This is the same behavior as clicking "Re-try run" in the Azure Pipelines UI. Clicking on "Re-run all checks" will result in a new run, with a new run number and will pick up changes in the configuration or YAML file.
516516

517-
## Pricing
518-
519-
Azure Pipelines is free for GitHub repositories, with multiple free offerings available depending on whether your GitHub repository and project are public or private.
520-
521-
If your GitHub repository is open source, you can make your Azure DevOps project **public** so that anyone can view your pipeline's build results, logs, and test results without signing in. When users outside your organization fork your repository and submit pull requests, they can view the status of builds that automatically validate those pull requests. If both your GitHub repository and your pipeline are public, you can run up to 10 parallel jobs in Azure Pipelines for free. These free jobs have a maximum timeout of 360 minutes (6 hours) each.
522-
523-
If either your GitHub repository or your pipeline is private, we still provide a free tier. In this tier, you can run one free parallel job that can run up to 60 minutes each time until you've used 1800 minutes per month. When the free tier is no longer sufficient, you can purchase additional Microsoft-hosted parallel jobs.
524-
525-
Learn more about pricing based on [parallel jobs](../licensing/concurrent-jobs.md).
526-
527517
## FAQ
528518

529519
### Why isn't a GitHub repository displayed for me to choose in Azure Pipelines?

docs/pipelines/repos/includes/ci-triggers4.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,16 @@ Select **Enable continuous integration** on the **Triggers** tab to enable this
1111

1212
### Batch changes
1313

14-
Select this check box if you have many team members uploading changes often and you want to reduce the number of builds you are running. If you select this option, when a build is running, the system waits until the build is completed and then queues another build of all changes that have not yet been built.
14+
Select this check box if you have many team members uploading changes often and you want to reduce the number of builds you are running. If you select this option, when a build is running, the system waits until the run is completed and then queues another run of all changes that have not yet been built.
1515

1616
> You can batch changes and build them together.
1717
18+
> [!NOTE]
19+
> If you use batching with a multi-stage YAML pipeline, then a run must reach a terminal state before the next one can start. This is often not desirable as a multi-stage pipeline may go through approvals and long-running deployment stages. In these cases, it is recommended that you follow one of these solutions:
20+
> * do not use batching
21+
> * split the pipeline into two separate pipelines - one for CI and one CD
22+
> * set appropriate conditions on stages to skip them and make a run terminate quickly
23+
1824
### Branch filters
1925

2026
You can specify the branches where you want to trigger builds. If you want to use wildcard characters, then type the branch specification (for example, `features/modules/*`) and then press Enter.

0 commit comments

Comments
 (0)