Skip to content

Commit c1fe6e5

Browse files
committed
Use Renovate in self-hosted mode
Signed-off-by: Bence Hornák <bence.hornak@gmail.com>
1 parent deb4242 commit c1fe6e5

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/renovate-self-hosted.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"allowedCommands": ["^./gradlew kotlinUpgradeYarnLock$"],
3+
"onboarding": true,
4+
"platform": "github",
5+
"repositories": ["open-feature/kotlin-sdk-contrib"],
6+
"semanticCommits": "enabled"
7+
}

.github/workflows/renovate.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Renovate
2+
on:
3+
schedule:
4+
- cron: '0 8 * * *' # At 8:00 AM daily (UTC)
5+
6+
# Allow manual triggering
7+
workflow_dispatch:
8+
9+
jobs:
10+
renovate:
11+
runs-on: ubuntu-latest
12+
steps:
13+
14+
- name: Checkout
15+
uses: actions/checkout@v5
16+
17+
- name: Self-hosted Renovate
18+
uses: renovatebot/github-action@v43.0.11
19+
with:
20+
configurationFile: .github/renovate-self-hosted.json
21+
token: ${{ secrets.RENOVATE_BOT }}

0 commit comments

Comments
 (0)