Skip to content

Commit

Permalink
Merge pull request #168 from rancher/deploy-renovate-2025-02-06-08-58-24
Browse files Browse the repository at this point in the history
Add initial Renovate configuration
  • Loading branch information
nicholasSUSE authored Feb 6, 2025
2 parents 9ea4001 + eeaae1a commit 6809a19
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": [
"github>rancher/renovate-config#release"
],
"baseBranches": [
"master"
],
"prHourlyLimit": 2
}
29 changes: 29 additions & 0 deletions .github/workflows/renovate-vault.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Renovate
on:
workflow_dispatch:
inputs:
logLevel:
description: "Override default log level"
required: false
default: "info"
type: string
overrideSchedule:
description: "Override all schedules"
required: false
default: "false"
type: string
# Run twice in the early morning (UTC) for initial and follow up steps (create pull request and merge)
schedule:
- cron: '30 4,6 * * *'

permissions:
contents: read
id-token: write

jobs:
call-workflow:
uses: rancher/renovate-config/.github/workflows/renovate-vault.yml@release
with:
logLevel: ${{ inputs.logLevel || 'info' }}
overrideSchedule: ${{ github.event.inputs.overrideSchedule == 'true' && '{''schedule'':null}' || '' }}
secrets: inherit

0 comments on commit 6809a19

Please sign in to comment.