Skip to content

Commit

Permalink
proper dependabot support
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Feb 1, 2025
1 parent 5dab8b1 commit 1fdbfd7
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 7 deletions.
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 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:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"pre-commit": {
"enabled": true,
"schedule": [
"on the first day of the month before 6am"
"on the first day of the month before 1am"
],
"packageRules": [
{
Expand Down
29 changes: 23 additions & 6 deletions template/.github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,30 @@
"config:recommended"
],
"automerge": true,
"ignorePaths": [
"**/.python-version"
],
"lockFileMaintenance": {
"enabled": true
"enabled": true,
"schedule": [
"on friday before 3pm"
]
},
"pre-commit": {
"enabled": true
}
"enabled": true,
"schedule": [
"on the first day of the month before 1am"
],
"packageRules": [
{
"groupName": "pre-commit hooks",
"groupSlug": "pre-commit",
"labels": [
"pre-commit",
"dependencies"
],
"matchDepTypes": ["repository"]
}
]
},
"labels": [
"renovate"
]
}

0 comments on commit 1fdbfd7

Please sign in to comment.