Add agentless report-green pipeline for docs-only PRs#54359
Merged
Conversation
Agent-Logs-Url: https://github.com/dotnet/sdk/sessions/34351e95-ad61-4cec-9157-82fa822f5926 Co-authored-by: lbussell <36081148+lbussell@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
lbussell
May 18, 2026 14:08
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new PR-only Azure Pipelines definition intended to report a successful Build Analysis status for documentation/infra-only changes that skip the main CI pipeline.
Changes:
- Adds
eng/pipelines/report-green.yml. - Configures PR path filters for docs/infra files.
- Adds an agentless
Report_Greenserver job usingDelay@1as a no-op success task.
joeloff
approved these changes
May 18, 2026
akoeplinger
approved these changes
May 19, 2026
Member
|
Thanks for the review @akoeplinger - It's copied pretty much wholesale from runtime so I expect it to work. |
This was referenced May 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #54148
Documentation-only PRs (e.g. #54136) skip every other CI pipeline, leaving Build Analysis hung waiting for a status that never arrives — today the only workaround is a manual
ba-gcomment.Changes
eng/pipelines/report-green.yml— new PR-only pipeline mirroring the currentdotnet/runtimepattern. Path filter matches the docs/infra files that no-op the rest of CI (**/*.md,documentation/*,.github/*,.devcontainer/*,.vscode/*, top-level license/notice/readme files).Report_Greenjob onpool: server(agentless) usingDelay@1withdelayForMinutes: '0'— no agent leased, no VM spun up, completes immediately, gives BA its green check.Note
Requires a corresponding pipeline definition wired up in dnceng AzDO before it takes effect.