From 2a0080f99006c66479e4cc2e362badd160e6cc36 Mon Sep 17 00:00:00 2001 From: Jake Wang Date: Thu, 23 Apr 2026 21:25:13 +0800 Subject: [PATCH 1/2] taskhub#114 Add Dependabot configuration --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..3ef5ffa --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + - package-ecosystem: "gradle" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 10 + groups: + gradle-minor-and-patch: + patterns: ["*"] + update-types: ["minor", "patch"] + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "monday" From a88f5d357519076cab7df9224003d4ed6ceb80b6 Mon Sep 17 00:00:00 2001 From: Jake Wang Date: Sat, 25 Apr 2026 22:00:33 +0800 Subject: [PATCH 2/2] taskhub#114 Address review: add grouping and PR limit to GitHub Actions block --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3ef5ffa..9d8fa3f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,3 +15,8 @@ updates: schedule: interval: "weekly" day: "monday" + open-pull-requests-limit: 10 + groups: + actions-minor-and-patch: + patterns: ["*"] + update-types: ["minor", "patch"]