From 8aa2119b385742db5bfc0671c6711fac269fd8d1 Mon Sep 17 00:00:00 2001 From: Jacob Aronoff Date: Wed, 2 Aug 2023 17:13:31 -0400 Subject: [PATCH 1/3] Add groups --- .github/dependabot.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 788b9504c9..720496b244 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,14 +4,54 @@ updates: directory: / schedule: interval: daily + # Create a group of dependencies to be updated together in one pull request + groups: + golang-org-x: + patterns: + - "golang.org/x/*" + prometheus: + patterns: + - "github.com/prometheus-operator/prometheus-operator/*" + - "github.com/prometheus/prometheus/*" + - "github.com/prometheus/client_go/*" + kubernetes: + patterns: + - "k8s.io/*" + - "sigs.k8s.io/*" - package-ecosystem: gomod directory: /cmd/operator-opamp-bridge schedule: interval: daily + groups: + golang-org-x: + patterns: + - "golang.org/x/*" + prometheus: + patterns: + - "github.com/prometheus-operator/prometheus-operator/*" + - "github.com/prometheus/prometheus/*" + - "github.com/prometheus/client_go/*" + kubernetes: + patterns: + - "k8s.io/*" + - "sigs.k8s.io/*" - package-ecosystem: gomod directory: /cmd/otel-allocator schedule: interval: daily + groups: + golang-org-x: + patterns: + - "golang.org/x/*" + prometheus: + patterns: + - "github.com/prometheus-operator/prometheus-operator/*" + - "github.com/prometheus/prometheus/*" + - "github.com/prometheus/client_go/*" + kubernetes: + patterns: + - "k8s.io/*" + - "sigs.k8s.io/*" - package-ecosystem: github-actions directory: / From 39ea5e0c7c7f856a3aa9c06e93bcda5a1b6e6a75 Mon Sep 17 00:00:00 2001 From: Jacob Aronoff Date: Wed, 2 Aug 2023 17:14:59 -0400 Subject: [PATCH 2/3] add chlog entry --- .chloggen/dependabot-grouping.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 .chloggen/dependabot-grouping.yaml diff --git a/.chloggen/dependabot-grouping.yaml b/.chloggen/dependabot-grouping.yaml new file mode 100755 index 0000000000..d06f0791d5 --- /dev/null +++ b/.chloggen/dependabot-grouping.yaml @@ -0,0 +1,16 @@ +# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' +change_type: enhancement + +# The name of the component, or a single word describing the area of concern, (e.g. operator, target allocator, github action) +component: Github Action + +# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). +note: "Introduces dependency grouping for common go packages" + +# One or more tracking issues related to the change +issues: [1949] + +# (Optional) One or more lines of additional information to render under the primary note. +# These lines will be padded with 2 spaces and then inserted directly into the document. +# Use pipe (|) for multiline entries. +subtext: From c975633f7032f7421ccd9a441624d8702af0e29e Mon Sep 17 00:00:00 2001 From: Jacob Aronoff Date: Thu, 3 Aug 2023 11:05:40 -0400 Subject: [PATCH 3/3] remove chloggen --- .chloggen/dependabot-grouping.yaml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 .chloggen/dependabot-grouping.yaml diff --git a/.chloggen/dependabot-grouping.yaml b/.chloggen/dependabot-grouping.yaml deleted file mode 100755 index d06f0791d5..0000000000 --- a/.chloggen/dependabot-grouping.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: enhancement - -# The name of the component, or a single word describing the area of concern, (e.g. operator, target allocator, github action) -component: Github Action - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: "Introduces dependency grouping for common go packages" - -# One or more tracking issues related to the change -issues: [1949] - -# (Optional) One or more lines of additional information to render under the primary note. -# These lines will be padded with 2 spaces and then inserted directly into the document. -# Use pipe (|) for multiline entries. -subtext: