File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : [
3
+ " github>rancher/renovate-config#release"
4
+ ],
5
+ "baseBranches" : [
6
+ " main"
7
+ ],
8
+ "prHourlyLimit" : 2
9
+ }
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments