angular/renovate.json
Alan Agius 39edc9387f ci: use static target: automation label in renovate config (#63752)
The logic to update the renovate config during the release to switch the target labels from target: rc to target: patch has been removed. Instead, a static target: automation label is added to the default renovate preset.

PR Close #63752
2025-09-12 16:44:50 +00:00

55 lines
1.6 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>angular/dev-infra//renovate-presets/default.json5"],
"baseBranchPatterns": ["main", "20.3.x"],
"ignoreDeps": [
"@types/selenium-webdriver",
"angular-1.5",
"angular-1.6",
"angular-1.7",
"angular-1.8",
"angular-mocks-1.5",
"angular-mocks-1.6",
"angular-mocks-1.7",
"angular-mocks-1.8",
"convert-source-map",
"selenium-webdriver",
"systemjs"
],
"packageRules": [
{
"matchFileNames": [
"integration/**",
"modules/ssr-benchmarks/package.json",
"packages/core/schematics/migrations/signal-migration/test/**",
"packages/zone.js/test/typings/package.json"
],
"enabled": false
},
{
"matchManagers": ["bazel", "bazel-module", "bazelisk", "npm"],
"postUpgradeTasks": {
"commands": [
"git restore .yarn/releases/yarn-1.22.22.cjs .npmrc",
"pnpm install --frozen-lockfile",
"pnpm bazel mod deps --lockfile_mode=update",
"pnpm bazel run //.github/actions/deploy-docs-site:main",
"pnpm bazel run //packages/common:base_currencies_file",
"pnpm bazel run //packages/common/locales:closure_locale_file",
"pnpm bazel run //packages/core:base_locale_file"
],
"fileFilters": [
".github/actions/deploy-docs-site/**/*",
"packages/**/*",
"MODULE.bazel.lock"
],
"executionMode": "branch"
}
},
{
"enabled": false,
"matchDepNames": ["tailwindcss"],
"matchUpdateTypes": ["major"]
}
]
}