Skip to content

Commit

Permalink
Fix indentation in Dependabot config
Browse files Browse the repository at this point in the history
The `groups` section added in buildpacks#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 <[email protected]>
  • Loading branch information
edmorley committed Oct 27, 2023
1 parent bf6841a commit e4da6d9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e4da6d9

Please sign in to comment.