Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attempt to configure lockfile-only dependabot strategy #853

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
version: 2
updates:
# Update rule for lockfiles only: will bump requirements within the
# compatible versions found in pyproject.toml
- package-ecosystem: pip
directory: "./pydatalab"
schedule:
interval: monthly
day: monday
time: "05:43"
# Needs to be larger than the number of total requirements (currently 31)
open-pull-requests-limit: 50
target-branch: main
labels:
- dependency_updates
versioning-strategy: "lockfile-only"
groups:
python-dependencies-compat:
applies-to: version-updates
dependency-type: production
# Will make a separate PR to bump versions explicitly to the latest versions, in all cases
# May trigger incompatibilities in many cases, in which case additional constraints may be needed here
- package-ecosystem: pip
directory: "./pydatalab"
schedule:
Expand All @@ -23,10 +43,12 @@ updates:
python-dependencies-security:
applies-to: security-updates
dependency-type: production
# Updates GH actions versions as often as needed
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
day: monday
interval: monthly
time: "05:33"
target-branch: main
labels:
Expand Down