From c7ad09ca5410053cc6a620b388b63920feec71b8 Mon Sep 17 00:00:00 2001 From: Wayne-Ch Date: Fri, 29 May 2026 15:12:25 -0700 Subject: [PATCH] Fix .github/dependabot.yml: set package-ecosystem to github-actions The current config has an empty package-ecosystem field which fails Dependabot's schema validation on every PR opened against the repo: The property '#/updates/0/package-ecosystem' value "" did not match one of the following values: npm, bundler, ..., github-actions, ... Setting it to "github-actions" is the minimal change that makes the file schema-valid while opting in to a low-noise ecosystem (only the workflow files under .github/workflows/ are scanned). Additional ecosystems (npm, pip, cargo, nuget, vcpkg, etc.) can be enabled in follow-up PRs by whoever wants to own those Dependabot update PRs. --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5990d9c6..6867e71e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,7 @@ version: 2 updates: - - package-ecosystem: "" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: "github-actions" + directory: "/" schedule: interval: "weekly"