Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .azure/pipelines/ci-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ trigger:
- main
- release/*

# Run PR validation on all branches
# This doesn't have any path exclusions, even for things like docs, because
# we have it configured in GitHub as a required check, and for it to pass
# it must actually run, even if it's not relevant to a particular change.
# Run PR validation on all branches, except for changes that only touch
# documentation or repository metadata, which can't affect the product build.
# When every changed file matches the exclusions below, report-green.yml runs
# instead so that Build Analysis can still report a green required check.
pr:
autoCancel: true
branches:
Expand All @@ -27,8 +27,8 @@ pr:
- .vscode/*
- docs/*
- '**/*.md'
- LICENSE.TXT
- THIRD-PARTY-NOTICES.TXT
- LICENSE.txt
- THIRD-PARTY-NOTICES.txt

parameters:
# Choose whether to skip tests when running pipeline manually.
Expand Down
4 changes: 2 additions & 2 deletions .azure/pipelines/quarantined-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ pr:
- .vscode/*
- docs/*
- '**/*.md'
- LICENSE.TXT
- THIRD-PARTY-NOTICES.TXT
- LICENSE.txt
- THIRD-PARTY-NOTICES.txt

schedules:
- cron: "0 */4 * * *"
Expand Down
4 changes: 2 additions & 2 deletions .azure/pipelines/report-green.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ pr:
- .vscode/*
- docs/*
- '**/*.md'
- LICENSE.TXT
- THIRD-PARTY-NOTICES.TXT
- LICENSE.txt
- THIRD-PARTY-NOTICES.txt

# ABG - Always Be Green
jobs:
Expand Down
2 changes: 2 additions & 0 deletions .azure/pipelines/template-tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ pr:
- src/Mvc/*
- eng/Version.Details.props
- eng/Versions.props
exclude:
- '**/*.md'

variables:
- name: _UseHelixOpenQueues
Expand Down
Loading