From e4da6d9b3e49f857292383ed3eadd4984f6bdd9a Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Fri, 27 Oct 2023 20:51:23 +0100 Subject: [PATCH] Fix indentation in Dependabot config The `groups` section added in #223 was indented incorrectly, resulting in Dependabot ignoring the config. It's not clear why the Dependabot config schema validation didn't highlight the error on the PR - perhaps because it doesn't run on forked PRs? Signed-off-by: Ed Morley <501702+edmorley@users.noreply.github.com> --- .github/dependabot.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 05932822..e9220ed7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,12 +4,12 @@ updates: directory: "/" schedule: interval: weekly - groups: - # Group all minor/patch go dependencies into a single PR. - go-dependencies: - update-types: - - "minor" - - "patch" + groups: + # Group all minor/patch go dependencies into a single PR. + go-dependencies: + update-types: + - "minor" + - "patch" - package-ecosystem: github-actions directory: "/" schedule: