Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MAINTENANCE] Only attempt docs-integration pipeline when manually triggered #7674

Merged
merged 5 commits into from
Apr 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions ci/azure-pipelines-docs-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#
# The pipeline is run under the following conditions:
# - On any PR
# - When manually triggered

resources:
containers:
Expand Down Expand Up @@ -42,6 +43,7 @@ variables:

stages:
- stage: scope_check
condition: eq(variables.isManual, true)
pool:
vmImage: 'ubuntu-20.04'
jobs:
Expand All @@ -63,6 +65,7 @@ stages:

- stage: docusaurus_tests
dependsOn: scope_check
condition: eq(variables.isManual, true)
pool:
vmImage: 'ubuntu-latest'
jobs:
Expand Down