chore: replace release.config.js with .releaserc.json for semantic release configuration

This commit is contained in:
vincent-herlemont
2025-06-17 10:28:07 +09:00
parent 2a34adc35f
commit c177e97857
4 changed files with 153 additions and 52 deletions
+30 -6
View File
@@ -1,6 +1,8 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"extends": [
"config:base"
],
"semanticCommits": "enabled",
"semanticCommitType": "chore",
"semanticCommitScope": "deps",
@@ -8,14 +10,36 @@
"packageRules": [
{
"description": "Automerge non-major updates",
"matchUpdateTypes": ["minor", "patch"],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"description": "Automerge actions",
"matchDepTypes": ["action"],
"matchUpdateTypes": ["major", "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"
}
]
}