mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
584593b138
* chore: add github-actions to dependabot * chore: upgrade to actions/cache@v4
33 lines
1003 B
YAML
33 lines
1003 B
YAML
# To get started with Dependabot version updates, you'll need to specify which
|
|
# package ecosystems to update and where the package manifests are located.
|
|
# Please see the documentation for all configuration options:
|
|
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/about-dependabot-version-updates
|
|
|
|
version: 2
|
|
updates:
|
|
- package-ecosystem: "npm"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|
|
versioning-strategy: increase
|
|
groups:
|
|
rc-component-patch:
|
|
dependency-type: "production"
|
|
patterns:
|
|
- "rc-*"
|
|
- "@rc-component*"
|
|
update-types: ["patch"]
|
|
dependencies:
|
|
dependency-type: "production"
|
|
exclude-patterns:
|
|
- "rc-*"
|
|
- "@rc-component*"
|
|
update-types: ["major", "minor"]
|
|
dev-dependencies:
|
|
dependency-type: "development"
|
|
update-types: ["major"]
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|