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

on:
workflow_dispatch:
inputs:
dryRun:
description: 'Dry run (no PRs will be created)'
required: false
default: 'false'
type: choice
options:
- 'true'
- 'false'
schedule:
- cron: '0 0 * * 1' # Every Monday at 00:00 UTC

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

- name: Run Renovate
uses: renovatebot/github-action@v41
with:
configurationFile: renovate.json
token: ${{ secrets.RENOVATE_TOKEN }}
env:
LOG_LEVEL: info
RENOVATE_DRY_RUN: ${{ github.event.inputs.dryRun }}
10 changes: 10 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"labels": ["dependencies"],
"prHourlyLimit": 2,
"prConcurrentLimit": 5,
"schedule": ["before 9am on monday"]
}