e602439769
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 1m6s
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 1m1s
CI/CD Pipeline / PR Build API Image (push) Has been skipped
CI/CD Pipeline / PR Build Web Image (push) Has been skipped
CI/CD Pipeline / PR Build Worker Image (push) Has been skipped
CI/CD Pipeline / Validate - Code Quality (push) Failing after 1m47s
CI/CD Pipeline / Frontend Lint (push) Successful in 42s
CI/CD Pipeline / Build Staging Web Image (push) Successful in 1m3s
CI/CD Pipeline / Build Staging Worker Image (push) Failing after 1m47s
CI/CD Pipeline / Build Staging API Image (push) Failing after 2m11s
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Frontend Unit Tests (push) Failing after 21s
CI/CD Pipeline / ACR Image Cleanup (push) Has been skipped
CI/CD Pipeline / Integration Tests (push) Successful in 2m12s
CI/CD Pipeline / Unit Tests (push) Successful in 3m23s
同步#876的renovate依赖自动更新配置到main,保持main和develop CI配置一致。
59 lines
1.3 KiB
Plaintext
59 lines
1.3 KiB
Plaintext
{
|
|
"": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["config:recommended"],
|
|
|
|
"baseBranches": ["develop"],
|
|
"labels": ["dependencies"],
|
|
"assignees": ["xiaoxia"],
|
|
|
|
"prConcurrentLimit": 3,
|
|
"prHourlyLimit": 3,
|
|
|
|
"schedule": ["after 2am before 6am on monday"],
|
|
"timezone": "Asia/Shanghai",
|
|
|
|
"vulnerabilityAlerts": {
|
|
"enabled": true,
|
|
"labels": ["dependencies", "security"],
|
|
"schedule": ["at any time"]
|
|
},
|
|
|
|
"pip_requirements": {
|
|
"fileMatch": [
|
|
"(^|/)requirements\.txt$",
|
|
"(^|/)requirements-base\.txt$",
|
|
"(^|/)requirements-dev\.txt$",
|
|
"(^|/)requirements-worker\.txt$"
|
|
]
|
|
},
|
|
|
|
"npm": {
|
|
"fileMatch": [
|
|
"(^|/)apps/web/package\.json$"
|
|
]
|
|
},
|
|
|
|
"packageRules": [
|
|
{
|
|
"matchDepTypes": ["dependencies"],
|
|
"matchUpdateTypes": ["patch", "minor"],
|
|
"groupName": "production deps (minor & patch)",
|
|
"groupSlug": "prod-deps-minor-patch"
|
|
},
|
|
{
|
|
"matchDepTypes": ["devDependencies"],
|
|
"matchUpdateTypes": ["patch", "minor"],
|
|
"groupName": "dev deps (minor & patch)",
|
|
"groupSlug": "dev-deps-minor-patch"
|
|
},
|
|
{
|
|
"matchUpdateTypes": ["major"],
|
|
"labels": ["dependencies", "major-update"]
|
|
}
|
|
],
|
|
|
|
"rebaseWhen": "behind-base-branch",
|
|
"semanticCommits": "auto",
|
|
"semanticPrefix": "chore(deps): "
|
|
}
|