You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bundle file is available in the agent artifact in the workflow run linked above.
To create a pull request with the changes:
# Download the artifact from the workflow run
gh run download 26637639241 -n agent -D /tmp/agent-26637639241
# Fetch the bundle into a temporary ref, then update the local branch
git fetch /tmp/agent-26637639241/aw-unquarantine-responsebody-2026-05-29.bundle refs/heads/unquarantine-responsebody-2026-05-29:refs/bundles/create-pr-unquarantine-responsebody-2026-05-29-53b5bd1b628b84f1-7d57d3e1
git update-ref refs/heads/unquarantine-responsebody-2026-05-29-53b5bd1b628b84f1 refs/bundles/create-pr-unquarantine-responsebody-2026-05-29-53b5bd1b628b84f1-7d57d3e1
git checkout unquarantine-responsebody-2026-05-29-53b5bd1b628b84f1
# Ensure the working tree matches the updated branch
git reset --hard
# Remove the temporary bundle ref
git update-ref -d refs/bundles/create-pr-unquarantine-responsebody-2026-05-29-53b5bd1b628b84f1-7d57d3e1
# Push the branch to origin
git push origin unquarantine-responsebody-2026-05-29-53b5bd1b628b84f1
# Create the pull request
gh pr create --title '[test-quarantine] Unquarantine HttpSys.ResponseBodyTests.ResponseBody_WriteContentLength_PassedThrough' --base main --head unquarantine-responsebody-2026-05-29-53b5bd1b628b84f1 --repo DeagleGross/aspnetcore
The test
ResponseBody_WriteContentLength_PassedThroughhas been passing with 100% pass rate for 30+ days in the quarantine pipeline (pipeline 84):Closes dotnet#63532
Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download bundle artifact
The bundle file is available in the
agentartifact in the workflow run linked above.To create a pull request with the changes: