From 4c8791c1cb749a9c15df10d209ac0f93b37eb998 Mon Sep 17 00:00:00 2001 From: Tuomas Haapala Date: Tue, 3 Sep 2024 21:58:28 +0300 Subject: [PATCH] chore(dependabot): use deps commit type By default, Dependabot creates commits with type "chore". Changed the type to "deps" which is the correct type for dependencies in our projects. "chore" was particularly problematic because it doesn't cause release-please to create a new release. --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..6a3f63f8 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" + commit-message: + prefix: "deps" + # Disable version updates and only allow security updates + open-pull-requests-limit: 0