Fix OneBranch Official NuGet publish service connection#3995
Fix OneBranch Official NuGet publish service connection#3995paulmedynski merged 6 commits intomainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Updates Azure DevOps pipeline definitions to correct the NuGet.org publish service connection used by OneBranch official releases, and adjusts trigger path filtering for PR/CI pipelines.
Changes:
- Update OneBranch variable
NuGetServiceConnectionto the intended ADO service connection name for NuGet pushes. - Exclude
eng/pipelines/onebranchfrom PR path triggers in the two PR validation pipelines. - Remove path-based CI trigger filtering so CI runs on all pushes to the configured branches.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| eng/pipelines/sqlclient-pr-project-ref-pipeline.yml | Adds PR path exclusion for eng/pipelines/onebranch. |
| eng/pipelines/sqlclient-pr-package-ref-pipeline.yml | Adds PR path exclusion for eng/pipelines/onebranch. |
| eng/pipelines/onebranch/variables/common-variables.yml | Sets the OneBranch NuGet publish service connection name. |
| eng/pipelines/dotnet-sqlclient-ci-project-reference-pipeline.yml | Removes CI trigger path filters (branch-only triggers). |
| eng/pipelines/dotnet-sqlclient-ci-package-reference-pipeline.yml | Removes CI trigger path filters (branch-only triggers). |
…cts contain multiple packages. - Fixed PR pipeline trigger paths.
Codecov Report✅ All modified and coverable lines are covered by tests.
Additional details and impacted files@@ Coverage Diff @@
## main #3995 +/- ##
==========================================
- Coverage 72.03% 64.56% -7.47%
==========================================
Files 287 282 -5
Lines 43149 66073 +22924
==========================================
+ Hits 31083 42663 +11580
- Misses 12066 23410 +11344
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…cards matching unintended artifacts.
… all the other packages.
Description
The OneBranch Official pipeline contained a placeholder value for the service connection to use for NuGet pushes. Replaced it with the actual value we need to use.
I also excluded OneBranch pipeline files from PR triggers since they have no effect on PR checks, and removed all paths from the CI triggers since they should build on all pushes.