Skip to content
Merged
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
37 changes: 37 additions & 0 deletions .azure/pipelines/report-green.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This CI job only runs on PRs where all other jobs are skipped.
# This allows Build Analysis to report green. Without this, no jobs would run,
# causing Build Analysis to hang indefinitely (or until someone commented "ba-g {justification}" on the PR).

# Only run this on PRs
trigger: none
# Run for all branches, only on paths that no-op other jobs
pr:
autoCancel: true
branches:
include:
- '*'
paths:
include:
- .devcontainer/*
- .github/*
- .vscode/*
- docs/*
- '**/*.md'
- LICENSE.TXT
- THIRD-PARTY-NOTICES.TXT

# ABG - Always Be Green
jobs:
- template: /eng/common/templates/jobs/jobs.yml
parameters:
enableTelemetry: true
helixRepo: dotnet/aspnetcore
jobs:
- job: Report_Green
enableSBOM: false
pool:
vmImage: ubuntu-22.04
steps:
- powershell: |
exit 0
displayName: Exit 0
Loading