Skip to content
Merged
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
20 changes: 0 additions & 20 deletions .github/dependabot.yml

This file was deleted.

9 changes: 9 additions & 0 deletions .github/renovate-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Global (self-hosted) Renovate configuration, used by the
// .github/workflows/renovate.yml GitHub Action.
// Repository-level configuration is in renovate.json.
module.exports = {
platform: "github",
onboarding: false,
requireConfig: "optional",
branchPrefix: "renovate/",
};
18 changes: 18 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Renovate

on:
schedule:
- cron: "0 6 * * *" # Run every day at 6am UTC
workflow_dispatch: # Enables manual trigger

jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.3
- name: Self-hosted Renovate
uses: renovatebot/github-action@v46.1.19
with:
configurationFile: .github/renovate-config.js
token: ${{ secrets.RENOVATE_TOKEN }}
5 changes: 5 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"reviewers": ["larsewi", "olehermanse"]
}
Loading