From cbc5c80a9cb9d194fedacd0f661dae181f9fec5b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 15 May 2026 23:05:51 +0000 Subject: [PATCH] Add eng/pipelines/report-green.yml Agent-Logs-Url: https://github.com/dotnet/sdk/sessions/34351e95-ad61-4cec-9157-82fa822f5926 Co-authored-by: lbussell <36081148+lbussell@users.noreply.github.com> --- eng/pipelines/report-green.yml | 35 ++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 eng/pipelines/report-green.yml diff --git a/eng/pipelines/report-green.yml b/eng/pipelines/report-green.yml new file mode 100644 index 000000000000..f228fb307edd --- /dev/null +++ b/eng/pipelines/report-green.yml @@ -0,0 +1,35 @@ +# 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/* + - documentation/* + - '**/*.md' + - CODE-OF-CONDUCT.md + - CODEOWNERS + - LICENSE.TXT + - README.md + - SECURITY.md + - THIRD-PARTY-NOTICES.TXT + +# ABG - Always Be Green +jobs: + - job: Report_Green + pool: server + steps: + # This is a documentation-only change. Use no-op task to exit successfully. + - task: Delay@1 + inputs: + delayForMinutes: '0'