Files
archived-native-model/renovate.json

45 lines
988 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"semanticCommits": "enabled",
"semanticCommitType": "chore",
"semanticCommitScope": "deps",
"platformAutomerge": true,
"packageRules": [
{
"description": "Automerge non-major updates",
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"description": "Automerge actions",
"matchDepTypes": [
"action"
],
"matchUpdateTypes": [
"major",
"minor",
"patch"
],
"automerge": true
}
],
"regexManagers": [
{
"fileMatch": [
"^\\.github/workflows/[^/]+\\.ya?ml$"
],
"matchStrings": [
"uses: hustcer/setup-nu@.*?\\n.*?version: '\\s*(?<currentValue>.*?)'"
],
"depNameTemplate": "nushell",
"datasourceTemplate": "github-releases",
"packageNameTemplate": "nushell/nushell"
}
]
}