Skip to content

Commit e2db801

Browse files
authored
chore: feat-renovate-778
1 parent 77ee9ab commit e2db801

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.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 0 * * *' # Run daily at midnight
6+
7+
jobs:
8+
renovate:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v2
14+
15+
- name: Set up Renovate
16+
run: |
17+
npm install -g renovate
18+
renovate --config renovate.json

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": ["config:base"],
3+
"packageRules": [
4+
{
5+
"packagePatterns": ["^github-actions/"],
6+
"groupName": "GitHub Actions",
7+
"schedule": ["daily"]
8+
}
9+
]
10+
}
11+

0 commit comments

Comments
 (0)