Skip to content

Commit

Permalink
Add dependabot config for version updates (#230)
Browse files Browse the repository at this point in the history
Instead of manually maintaining version dependencies, let's see
how the robot does.

This should be tuned to produce 1 big update PR per week. That
should minimize the initial noise while we figure out the
appropriate configurations for this tool.

Resolves #229
  • Loading branch information
tlento authored Dec 20, 2023
1 parent f2774ff commit b9eb43e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2
updates:
# python dependencies
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
rebase-strategy: "disabled"
groups:
all-dependencies:
# Dependabot uses a lot of heuristic matching, so it's not clear if we can separate prod from dev
exclude-patterns:
# We need to manually maintain all of our dbt and internal MetricFlow sub-package dependencies
- "dbt-*"
- "metricflow*"
# Manually exclude annoying-to-update dev dependencies
- "ruff"
- "pre-commit"
- "black"

# GitHub actions dependencies
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
rebase-strategy: "disabled"

0 comments on commit b9eb43e

Please sign in to comment.