Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
Pull request overview
Updates package manager configuration files across the repo to satisfy Secure Supply Chain Analysis / CFS detectors when migrating pipelines, primarily by standardizing on an Azure Artifacts feed (ORT-Nightly) and adding required “sibling” config files.
Changes:
- Add missing
.npmrcfiles for JS packages/samples (and set a default registry). - Add missing
.cargo/config.tomlfiles for Rust workspaces to route crates.io through ORT-Nightly. - Add/adjust
NuGet.configfiles to use a single Azure Artifacts source (ORT-Nightly) and remove non-compliant feeds.
Reviewed changes
Copilot reviewed 13 out of 13 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| www/.npmrc | Sets default npm registry to ORT-Nightly (plus always-auth) to satisfy CFS npm checks for the website. |
| sdk_legacy/rust/.cargo/config.toml | Adds Cargo source replacement to ORT-Nightly for the legacy Rust SDK. |
| sdk_legacy/js/.npmrc | Adds sibling .npmrc pointing to ORT-Nightly for the legacy JS SDK. |
| sdk_legacy/cs/NuGet.config | Adds missing in-scope NuGet config for legacy C# projects to satisfy CFS0011. |
| sdk/rust/.cargo/config.toml | Adds Cargo source replacement to ORT-Nightly for the Rust SDK. |
| sdk/js/.npmrc | Adds sibling .npmrc pointing to ORT-Nightly for the JS SDK. |
| sdk/cs/NuGet.config | Removes nuget.org and keeps only ORT-Nightly Azure Artifacts feed to satisfy NuGet security analysis. |
| samples/rust/.cargo/config.toml | Adds Cargo source replacement to ORT-Nightly for Rust samples (covers sub-crates via parent lookup). |
| samples/js/tool-calling-foundry-local/.npmrc | Adds sibling .npmrc pointing to ORT-Nightly for this sample. |
| samples/js/electron-chat-application/.npmrc | Adds sibling .npmrc pointing to ORT-Nightly for this sample. |
| samples/js/copilot-sdk-foundry-local/.npmrc | Adds sibling .npmrc pointing to ORT-Nightly for this sample. |
| samples/js/chat-and-audio-foundry-local/.npmrc | Adds sibling .npmrc pointing to ORT-Nightly for this sample. |
| samples/cs/GettingStarted/nuget.config | Removes multiple sources/mapping and uses only ORT-Nightly Azure Artifacts feed. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
baijumeswani
approved these changes
Mar 24, 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 the following errors I encountered when migrating our packaging/publishing pipelines to onnxruntime-release-pipelines