mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
28 lines
1.1 KiB
YAML
28 lines
1.1 KiB
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/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
|
|
version: 2
|
|
updates:
|
|
- package-ecosystem: npm # See documentation for possible values
|
|
directory: '/' # Location of package manifests
|
|
open-pull-requests-limit: 10
|
|
schedule:
|
|
interval: monthly
|
|
ignore:
|
|
# For all dependencies, trigger pull requests only for semver-major updates (ignore minor and patch).
|
|
- dependency-name: '*'
|
|
update-types:
|
|
['version-update:semver-patch', 'version-update:semver-minor']
|
|
- package-ecosystem: 'github-actions'
|
|
directory: '/'
|
|
open-pull-requests-limit: 10
|
|
schedule:
|
|
interval: monthly
|
|
ignore:
|
|
# For all dependencies, trigger pull requests only for semver-major and semver-minor updates (ignore patch).
|
|
- dependency-name: '*'
|
|
update-types:
|
|
['version-update:semver-patch', 'version-update:semver-minor']
|