From 90696d6f31acccfff158fbd0a760412330eab9ff Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Fri, 24 Nov 2023 13:40:19 +0100 Subject: [PATCH 1/3] dependabot weekly and grouped updates --- .github/dependabot.yml | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 63d5e04b..7bc804a7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,20 @@ updates: - package-ecosystem: 'npm' directory: '/' schedule: - interval: 'daily' + interval: weekly + # New! + groups: + # This is the name of your group, it will be used in PR titles and branch names + dev-dependencies: + # A pattern can be... + patterns: + - "rubocop" # a single dependency name + - "aws*" # or a wildcard string that matches multiple dependencies + # If you'd simply like to group as many dependencies together as possible, + # you can use the wildcard * - but keep in mind this may open a very large PR! + # Additionally, you can specify any dependencies to be excluded from the group + exclude-patterns: + - "aws-sdk" commit-message: prefix: "chore" include: "scope" @@ -11,7 +24,20 @@ updates: - package-ecosystem: github-actions directory: "/" schedule: - interval: daily + interval: weekly + # New! + groups: + # This is the name of your group, it will be used in PR titles and branch names + dev-dependencies: + # A pattern can be... + patterns: + - "rubocop" # a single dependency name + - "aws*" # or a wildcard string that matches multiple dependencies + # If you'd simply like to group as many dependencies together as possible, + # you can use the wildcard * - but keep in mind this may open a very large PR! + # Additionally, you can specify any dependencies to be excluded from the group + exclude-patterns: + - "aws-sdk" commit-message: prefix: "chore" include: "scope" From c05b436eb57b5fe179415954d910a47432601f32 Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Tue, 9 Jan 2024 12:15:46 +0100 Subject: [PATCH 2/3] Update dependabot.yml --- .github/dependabot.yml | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7bc804a7..3c4b3206 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,16 +7,14 @@ updates: # New! groups: # This is the name of your group, it will be used in PR titles and branch names - dev-dependencies: + linting: # A pattern can be... patterns: - - "rubocop" # a single dependency name - - "aws*" # or a wildcard string that matches multiple dependencies + - "@commitlint/*" # a single dependency name + # or a wildcard string that matches multiple dependencies # If you'd simply like to group as many dependencies together as possible, # you can use the wildcard * - but keep in mind this may open a very large PR! # Additionally, you can specify any dependencies to be excluded from the group - exclude-patterns: - - "aws-sdk" commit-message: prefix: "chore" include: "scope" @@ -25,19 +23,6 @@ updates: directory: "/" schedule: interval: weekly - # New! - groups: - # This is the name of your group, it will be used in PR titles and branch names - dev-dependencies: - # A pattern can be... - patterns: - - "rubocop" # a single dependency name - - "aws*" # or a wildcard string that matches multiple dependencies - # If you'd simply like to group as many dependencies together as possible, - # you can use the wildcard * - but keep in mind this may open a very large PR! - # Additionally, you can specify any dependencies to be excluded from the group - exclude-patterns: - - "aws-sdk" commit-message: prefix: "chore" include: "scope" From 0749f4f90cfc7b5d972bb173931ab7316f8c692e Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Tue, 9 Jan 2024 15:49:17 +0100 Subject: [PATCH 3/3] Update .github/dependabot.yml Co-authored-by: Alexandre Fauquette <45398769+alexfauquette@users.noreply.github.com> --- .github/dependabot.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3c4b3206..d5ce5cca 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,17 +4,10 @@ updates: directory: '/' schedule: interval: weekly - # New! groups: - # This is the name of your group, it will be used in PR titles and branch names linting: - # A pattern can be... patterns: - - "@commitlint/*" # a single dependency name - # or a wildcard string that matches multiple dependencies - # If you'd simply like to group as many dependencies together as possible, - # you can use the wildcard * - but keep in mind this may open a very large PR! - # Additionally, you can specify any dependencies to be excluded from the group + - "@commitlint/*" commit-message: prefix: "chore" include: "scope"