Skip to content

Commit

Permalink
ci(dependabot): enable auto poetry updates (#463)
Browse files Browse the repository at this point in the history
* ci(dependabot): enable auto poetry lock updates

* monthly sched; group minor + patch updates

Co-Authored-By: Ken Brewer <kenibrewer@users.noreply.github.com>

---------

Co-authored-by: Ken Brewer <kenibrewer@users.noreply.github.com>
  • Loading branch information
d33bs and kenibrewer authored Oct 30, 2024
1 parent 5b5bb7a commit 8a8e6dc
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,18 @@ updates:
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
# Perform checks and updates for python poetry environment.
# See here for more information:
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#pip-and-pip-compile
- package-ecosystem: "pip"
directory: "/"
schedule:
# Check for updates to poetry lockfile every week
interval: "monthly"
groups:
python-packages:
patterns:
- "*"
update-types:
- "minor"
- "patch"

0 comments on commit 8a8e6dc

Please sign in to comment.