Feature/dependabot config - #9393
Open
Sandeep Kumar Das (Sandeep-622) wants to merge 2 commits into
Open
Conversation
Adds .github/dependabot.yml covering all package managers in the repo: - npm: /, /schemas, and the /source/nodejs lerna + npm-workspaces monorepo - nuget: dotnet, uwp, winui3 solution roots and the iOS feed tool - gradle: /source/android - swift: Package.swift at repo root - github-actions: workflows Weekly schedule, PR limit 1 per ecosystem. CocoaPods (iOS Podfile) is omitted as it is not a Dependabot-supported ecosystem.
Repo-root and /schemas package-lock.json are empty stubs with no package.json, so Dependabot's npm updater would error there. The only real npm root is the /source/nodejs workspaces monorepo, whose single top-level manifest + lockfile covers all workspace packages.
Sandeep Kumar Das (Sandeep-622)
requested review from
a team,
laxmikanth-msft and
Rashmi Thakur (rashmi-thakurr)
August 19, 2026 17:32
Rashmi Thakur (rashmi-thakurr)
approved these changes
Aug 20, 2026
laxmikanth-msft
approved these changes
Aug 20, 2026
Author
|
/azp run |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Author
|
/azp run |
|
Azure Pipelines: Successfully started running 2 pipeline(s). |
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.
Add Dependabot version updates configuration
What
Adds
.github/dependabot.ymlto enable Dependabot version-update PRs across the package ecosystems actually used in AdaptiveCards.Ecosystems covered
npm/source/nodejs(lerna + npm-workspaces monorepo — its single top-levelpackage.json+ lockfile covers every workspace package)nuget/source/dotnet,/source/uwp,/source/uwp/winui3,/source/ios/tools/IOSFeedgradle/source/android(itssettings.gradleincludes the adaptivecards, mobile, mobilechatapp, and uitestapp subprojects)swift/(Package.swift)github-actions/(workflows)Settings
Scoping rationale
Directories were verified against the actual repo layout rather than using broad globs:
/source/nodejsonly. The repo-root and/schemaspackage-lock.jsonfiles are empty stubs ({"lockfileVersion": 1}) with nopackage.json— Dependabot's npm updater would error on them, so they are intentionally excluded..slnwith realPackageReference/packages.configdependencies) instead of broad**globs, which the Dependabot guidance warns can be slow / time out for NuGet.source/shared/cppC++ projects have no NuGet dependencies, so they are not listed.source/dotnet/.../package.jsonis a Unity (UPM) manifest, not npm — Dependabot cannot process it, so it is excluded.Notes
Podfile) is intentionally omitted — it is not a Dependabot-supported ecosystem.swiftentry is currently inert (Package.swiftdeclares no external SPM dependencies) but is kept for forward-compatibility; it is a harmless no-op until an SPM dependency is added.Related
Part of the Component Governance onboarding effort for
github:microsoft/AdaptiveCards.