From dc19fdb4aa4339a882b7e592c58671edc97c5495 Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:07:07 -0400 Subject: [PATCH] chore: update dependabot.yml (#104) * chore: update dependabot.yml * chore: fix yamllint errors * chore: change from minor to patch --- .github/dependabot.yml | 21 +++++++++++++-------- .yamllint.yml | 9 +++++++++ 2 files changed, 22 insertions(+), 8 deletions(-) create mode 100644 .yamllint.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 14c2668..6e98b5f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,17 +7,22 @@ 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: + - "patch" - 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: + - "patch" 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