Skip to content

Commit 0eaea2c

Browse files
authored
Create renovate.yml
1 parent b781c03 commit 0eaea2c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/renovate.yml

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

0 commit comments

Comments
 (0)