Skip to content

Commit

Permalink
add grouped dependency updates (#59)
Browse files Browse the repository at this point in the history
### What kind of change does this PR introduce?

* Adds grouped updates to the dependabot configuration

### Does this PR introduce a breaking change?

No.
  • Loading branch information
Zeitsperre authored Sep 10, 2024
2 parents 5399793 + 390ec6f commit 2eeda4b
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions {{cookiecutter.project_slug}}/.github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: github-actions
directory: /.github/workflows/
directory: /.github/workflows
schedule:
interval: monthly
open-pull-requests-limit: 10
groups:
actions:
patterns:
- "*"

- package-ecosystem: pip
directory: /
schedule:
interval: monthly
open-pull-requests-limit: 10
groups:
python:
patterns:
- "*"

0 comments on commit 2eeda4b

Please sign in to comment.