Skip to content

Commit 2151027

Browse files
authored
Merge pull request #180 from olehermanse/renovate
Switched from dependabot to renovate
2 parents 0c74840 + 2b39cd6 commit 2151027

4 files changed

Lines changed: 32 additions & 20 deletions

File tree

.github/dependabot.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/renovate-config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Global (self-hosted) Renovate configuration, used by the
2+
// .github/workflows/renovate.yml GitHub Action.
3+
// Repository-level configuration is in renovate.json.
4+
module.exports = {
5+
platform: "github",
6+
onboarding: false,
7+
requireConfig: "optional",
8+
branchPrefix: "renovate/",
9+
};

.github/workflows/renovate.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Renovate
2+
3+
on:
4+
schedule:
5+
- cron: "0 6 * * *" # Run every day at 6am UTC
6+
workflow_dispatch: # Enables manual trigger
7+
8+
jobs:
9+
renovate:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v6.0.3
14+
- name: Self-hosted Renovate
15+
uses: renovatebot/github-action@v46.1.19
16+
with:
17+
configurationFile: .github/renovate-config.js
18+
token: ${{ secrets.RENOVATE_TOKEN }}

renovate.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["config:recommended"],
4+
"reviewers": ["larsewi", "olehermanse"]
5+
}

0 commit comments

Comments
 (0)