From 71cae9d298b7fd843d262e3e4783d615ab4a9b7b Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:55:57 -0400 Subject: [PATCH 1/3] chore: update dependabot.yml --- .github/dependabot.yml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 14c2668..64a3b0a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,17 +7,23 @@ updates: open-pull-requests-limit: 10 labels: - T:dependencies + # Group all patch updates into a single PR + groups: + patch-updates: + applies-to: version-updates + update-types: + - "minor" - package-ecosystem: gomod directory: "/" schedule: - interval: weekly - open-pull-requests-limit: 10 - labels: - - T:dependencies - - package-ecosystem: docker - directory: "/docker" - schedule: - interval: weekly + interval: daily open-pull-requests-limit: 10 labels: - T:dependencies + # Group all patch updates into a single PR + groups: + patch-updates: + applies-to: version-updates + update-types: + - "minor" + From 50abaee8d2215a3e44f294e9a0522b5bf799974d Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Wed, 18 Sep 2024 11:32:33 -0400 Subject: [PATCH 2/3] chore: fix yamllint errors --- .github/dependabot.yml | 1 - .yamllint.yml | 9 +++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .yamllint.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 64a3b0a..31d5bf9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -26,4 +26,3 @@ updates: applies-to: version-updates update-types: - "minor" - diff --git a/.yamllint.yml b/.yamllint.yml new file mode 100644 index 0000000..cd2a9e8 --- /dev/null +++ b/.yamllint.yml @@ -0,0 +1,9 @@ +--- +# Built from docs https://yamllint.readthedocs.io/en/stable/configuration.html +extends: default + +rules: + # 120 chars should be enough, but don't fail if a line is longer + line-length: + max: 120 + level: warning From b715e9cd4ac5f9d3160d86959c7b5c6c163d9357 Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:13:15 -0400 Subject: [PATCH 3/3] chore: change from minor to patch --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 31d5bf9..6e98b5f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,7 +12,7 @@ updates: patch-updates: applies-to: version-updates update-types: - - "minor" + - "patch" - package-ecosystem: gomod directory: "/" schedule: @@ -25,4 +25,4 @@ updates: patch-updates: applies-to: version-updates update-types: - - "minor" + - "patch"