Skip to content

Commit

Permalink
Merge pull request #56 from Luap99/renovate
Browse files Browse the repository at this point in the history
add renovate config
  • Loading branch information
openshift-merge-bot[bot] authored Dec 13, 2024
2 parents 4f77145 + a21d8e7 commit f12ae12
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
Validate this file before committing with (from repository root):
podman run -it \
-v ./.github/renovate.json5:/usr/src/app/renovate.json5:z \
ghcr.io/renovatebot/renovate:latest \
renovate-config-validator
and/or use the pre-commit hook: https://github.com/renovatebot/pre-commit-hooks
*/

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",

/*************************************************
****** Global/general configuration options *****
*************************************************/

// Reuse predefined sets of configuration options to DRY
"extends": [
// https://github.com/containers/automation/blob/main/renovate/defaults.json5
"github>containers/automation//renovate/defaults.json5"
],

/*************************************************
*** Repository-specific configuration options ***
*************************************************/

"ignorePaths": [
"**/vendor/**",
"**/docs/**",
],

"addLabels": ["release-note-none"],

"customManagers": [
// Track updates on
{
"customType": "regex",
"fileMatch": "^build.sh$",
// Expected version format: gitreporef="xxx"
"matchStrings": ["gitreporef=\"(?<currentDigest>.*?)\"\\n"],
"currentValueTemplate": "main",
"depNameTemplate": "custom-coreos-disk-images",
"packageNameTemplate": "https://github.com/coreos/custom-coreos-disk-images",
"datasourceTemplate": "git-refs"
},
]
}

0 comments on commit f12ae12

Please sign in to comment.