Merge pull request #745 from jellyfin/pr-dependa-poof-1

Replace dependabot with renovate
This commit is contained in:
Odd Stråbø 2023-06-30 14:57:02 +02:00 committed by GitHub
commit eb8d9ae3e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 16 deletions

View File

@ -1,16 +0,0 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
labels:
- ci
- github-actions
- package-ecosystem: pip
directory: /
schedule:
interval: weekly
labels:
- pip
- dependencies

26
.github/renovate.json vendored Normal file
View File

@ -0,0 +1,26 @@
{
"extends": [
"config:base",
":dependencyDashboard",
":timezone(Etc/UTC)",
":preserveSemverRanges"
],
"internalChecksFilter": "strict",
"rebaseWhen": "conflicted",
"packageRules": [
{
"description": "Add the ci and github-actions GitHub label to GitHub Action bump PRs",
"matchManagers": ["github-actions"],
"labels": ["ci", "github-actions"]
},
{
"description": "Add the ci and github-actions GitHub label to GitHub Action bump PRs",
"matchManagers": ["pip_requirements"],
"labels": ["pip", "dependencies"]
}
],
"pip_requirements": {
"fileMatch": ["requirements(-[a-z0-9]+)?\\.txt$"]
}
}