mirror of
https://github.com/truecharts/charts.git
synced 2026-08-03 10:24:37 -03:00
15 lines
698 B
Plaintext
15 lines
698 B
Plaintext
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"npm": {
|
|
"fileMatch": [
|
|
"(^|/)website/.+/astro\\.config\\.(mjs|js|ts)$", // Matches Astro config files in /website and any subdirectory
|
|
"(^|/)website/.+/package\\.json$", // Matches package.json files in /website and any subdirectory
|
|
"(^|/)website/.+/package-lock\\.json$" // Matches package.json files in /website and any subdirectory
|
|
],
|
|
"branchPrefix": "renovate/astro-",
|
|
"enabled": true, // Enable updates for website dependencies
|
|
"updateTypes": ["major", "minor", "patch", "digest", "pin", "lockfile"], // Allow updates for all version types
|
|
"semanticCommitScope": "website"
|
|
},
|
|
}
|