Skip to content

Commit ed4b98f

Browse files
renovate-rancher[bot]holyspectral
authored andcommitted
Add initial Renovate configuration
1 parent 971c41f commit ed4b98f

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.github/renovate.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": [
3+
"github>rancher/renovate-config#release"
4+
],
5+
"baseBranches": [
6+
"main"
7+
],
8+
"prHourlyLimit": 2
9+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Renovate
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
logLevel:
6+
description: "Override default log level"
7+
required: false
8+
default: "info"
9+
type: string
10+
overrideSchedule:
11+
description: "Override all schedules"
12+
required: false
13+
default: "false"
14+
type: string
15+
# Run twice in the early morning (UTC) for initial and follow up steps (create pull request and merge)
16+
schedule:
17+
- cron: '30 4,6 * * *'
18+
19+
permissions:
20+
contents: read
21+
id-token: write
22+
23+
jobs:
24+
call-workflow:
25+
uses: rancher/renovate-config/.github/workflows/renovate-vault.yml@release
26+
with:
27+
logLevel: ${{ inputs.logLevel || 'info' }}
28+
overrideSchedule: ${{ github.event.inputs.overrideSchedule == 'true' && '{''schedule'':null}' || '' }}
29+
secrets: inherit

0 commit comments

Comments
 (0)