File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : [" github>rancher/renovate-config#release" ],
3
+ "baseBranches" : [" main" ],
4
+ "prHourlyLimit" : 2
5
+ }
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
+ jobs :
20
+ call-workflow :
21
+ uses : rancher/renovate-config/.github/workflows/renovate.yml@release
22
+ with :
23
+ logLevel : ${{ inputs.logLevel || 'info' }}
24
+ overrideSchedule : ${{ github.event.inputs.overrideSchedule == 'true' && '{''schedule'':null}' || '' }}
25
+ secrets : inherit
You can’t perform that action at this time.
0 commit comments