Skip to content
Draft
Show file tree
Hide file tree
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
25 changes: 25 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Renovate

on:
schedule:
# Weekly on Sunday at 06:00 UTC
- cron: '0 6 * * 0'
workflow_dispatch:

concurrency:
group: renovate
cancel-in-progress: false

jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run Renovate
uses: renovatebot/github-action@v46.1.17
with:
token: ${{ secrets.RENOVATE_TOKEN }}
env:
LOG_LEVEL: info
47 changes: 47 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"prHourlyLimit": 0,
"osvVulnerabilityAlerts": true,
"vulnerabilityAlerts": {
"enabled": true
},
"packageRules": [
{
"enabled": false,
"matchPackageNames": [
"*"
],
"matchUpdateTypes": [
"major"
],
"description": "Block major version updates globally"
},
{
"description": "PR priority: major updates",
"matchUpdateTypes": [
"major"
],
"prPriority": 10
},
{
"description": "PR priority: minor updates",
"matchUpdateTypes": [
"minor"
],
"prPriority": 5
},
{
"description": "Group patch and minor updates into \"non-major dependencies\"",
"matchUpdateTypes": [
"patch",
"minor"
],
"groupName": "non-major dependencies",
"groupSlug": "non-major",
"prPriority": 0
}
],
"branchPrefix": "renovate/",
"onboarding": false,
"requireConfig": "required"
}
Loading