Skip to content

Commit

Permalink
ci: Configure dependabot (#400)
Browse files Browse the repository at this point in the history
Note that the new `uv.lock` file added in #398 will not be updated at
the moment.
There's an open issue for that:
[dependabot-core#10478](https://www.github.com/dependabot/dependabot-core/issues/10478)
  • Loading branch information
aborgna-q authored Aug 27, 2024
1 parent 060649b commit 8ec175d
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
# NOTE: This won't update the `uv.lock` file yet, so that should be updated
# manually when needed.
# https://github.com/dependabot/dependabot-core/issues/10478
- package-ecosystem: "pip"
directories: # Location of package manifests
- "/"
schedule:
interval: "weekly"
commit-message:
# Use a conventional commit tag
prefix: "chore(deps-py)"
groups:
dev:
dependency-type: "development"
update-types: ["patch", "minor"]
patch:
update-types: ["patch"]
minor:
update-types: ["minor"]
# Major updates still generate individual PRs

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
commit-message:
# Use a conventional commit tag
prefix: "ci(deps)"

0 comments on commit 8ec175d

Please sign in to comment.