From a2bf902433eb866908b345cc67d3020d25eb8734 Mon Sep 17 00:00:00 2001 From: Damian Orzepowski Date: Tue, 13 Aug 2024 13:03:34 +0200 Subject: [PATCH] ci(SPV-992): use dependabot update groups --- .github/dependabot.yml | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 94c604d..118f9cb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,21 +1,22 @@ -# Basic dependabot.yml to update gomod, Github Actions and Docker version: 2 updates: - # Maintain dependencies for the core library + # Maintain dependencies for the codebase - package-ecosystem: "gomod" target-branch: "main" - directory: "/" + directories: + - "/" + - "/examples" schedule: - interval: "daily" - time: "10:00" - timezone: "UTC" - reviewers: - - "mrz1836" - assignees: - - "mrz1836" + interval: "weekly" + day: "monday" labels: - - "chore" - open-pull-requests-limit: 10 + - "dependencies" + groups: + go_modules: + update-types: + - "minor" + - "patch" + - "major" # Maintain dependencies for GitHub Actions - package-ecosystem: "github-actions" @@ -24,10 +25,11 @@ updates: schedule: interval: "weekly" day: "monday" - reviewers: - - "mrz1836" - assignees: - - "mrz1836" labels: - - "chore" - open-pull-requests-limit: 10 + - "dependencies" + groups: + gh_actions: + update-types: + - "minor" + - "patch" + - "major"