Skip to content

Commit 9a0cea2

Browse files
committed
add .github/renovate.json and .github/workflows/renovate.yaml
1 parent 626b6b0 commit 9a0cea2

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

.github/renovate.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": ["config:base"],
3+
"rangeStrategy": "bump"
4+
}

.github/workflows/renovate.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Renovate
2+
3+
on:
4+
schedule:
5+
- cron: "0 8 * * *"
6+
workflow_dispatch:
7+
8+
jobs:
9+
renovate:
10+
runs-on: ubuntu-24.04
11+
12+
permissions:
13+
contents: write
14+
pull-requests: write
15+
issues: write
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- uses: renovatebot/github-action@v40.1.4
21+
with:
22+
token: ${{ secrets.RENOVATE_TOKEN }}
23+
env:
24+
RENOVATE_CONFIG_FILE: ".github/renovate.json"

0 commit comments

Comments
 (0)