From 495b3f41d4f14da62c89681dc171682bc6a0a68a Mon Sep 17 00:00:00 2001 From: Ed Burns Date: Fri, 24 Apr 2026 13:54:06 -0400 Subject: [PATCH] Configure Dependabot to monitor @github/copilot npm updates - Add npm ecosystem entry for scripts/codegen/ directory - Filter to @github/copilot package only (daily schedule) - Add github-actions ecosystem entry for workflow updates (weekly) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/dependabot.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c77d00796..801e440e5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,12 +1,15 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file - version: 2 updates: - - package-ecosystem: "" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: "npm" + directory: "/scripts/codegen" + schedule: + interval: "daily" + open-pull-requests-limit: 1 + allow: + - dependency-name: "@github/copilot" + + - package-ecosystem: "github-actions" + directory: "/" schedule: interval: "weekly"