From 1b03342b0b5e6b216a317ae74951f2ed331251ff Mon Sep 17 00:00:00 2001 From: stacknil Date: Wed, 15 Apr 2026 16:00:15 +0800 Subject: [PATCH] Add Dependabot config to ignore fixture manifests --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..2cedd83 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/tools/sbom-diff-and-risk" + schedule: + interval: "weekly" + exclude-paths: + - "examples/**" + - "tests/fixtures/**" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"