From 9f1f9744d61745e45c9f5ff77e78dc2048cfc279 Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Mon, 14 Jul 2025 14:00:13 +0200 Subject: [PATCH] feat: :sparkles: add Dependabot to template for workflows and Python packages --- template/.github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 template/.github/dependabot.yml diff --git a/template/.github/dependabot.yml b/template/.github/dependabot.yml new file mode 100644 index 0000000..f07f87f --- /dev/null +++ b/template/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: monthly + commit-message: + prefix: ci + include: scope + + - package-ecosystem: uv + directory: / + schedule: + interval: monthly + commit-message: + prefix: build + include: scope