From 98e1b5beaab867073e11dcd37072ead0eb67ec60 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 17:40:57 +0000 Subject: [PATCH 1/3] Initial plan From d9bc4a05026d5a4ee9c6da4d26e676fc5f25b2ed Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 17:45:08 +0000 Subject: [PATCH 2/3] Fix malformed ignore configuration in dependabot.yml Co-authored-by: willtheorangeguy <18339050+willtheorangeguy@users.noreply.github.com> --- .github/dependabot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 29c459d..8baa101 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,17 +5,17 @@ updates: schedule: interval: "daily" ignore: - update-types: [ "version-update:semver-patch" ] + - update-types: [ "version-update:semver-patch" ] - package-ecosystem: "pip" directory: "/" schedule: interval: "daily" ignore: - update-types: [ "version-update:semver-patch" ] + - update-types: [ "version-update:semver-patch" ] - package-ecosystem: "docker" directory: "/" schedule: interval: "daily" ignore: - update-types: [ "version-update:semver-patch" ] + - update-types: [ "version-update:semver-patch" ] From 16fc88ce6155ddfaf8d269c0ffc734c9e3b28554 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 17:50:21 +0000 Subject: [PATCH 3/3] Add required dependency-name to ignore rules in dependabot.yml Co-authored-by: willtheorangeguy <18339050+willtheorangeguy@users.noreply.github.com> --- .github/dependabot.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8baa101..55a4a78 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,17 +5,20 @@ updates: schedule: interval: "daily" ignore: - - update-types: [ "version-update:semver-patch" ] + - dependency-name: "*" + update-types: [ "version-update:semver-patch" ] - package-ecosystem: "pip" directory: "/" schedule: interval: "daily" ignore: - - update-types: [ "version-update:semver-patch" ] + - dependency-name: "*" + update-types: [ "version-update:semver-patch" ] - package-ecosystem: "docker" directory: "/" schedule: interval: "daily" ignore: - - update-types: [ "version-update:semver-patch" ] + - dependency-name: "*" + update-types: [ "version-update:semver-patch" ]