* Add npm dependabot rules Signed-off-by: Sanket Sudake <sanketsudake@gmail.com> * Update .github/dependabot.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Sanket Sudake <sanketsudake@gmail.com> --------- Signed-off-by: Sanket Sudake <sanketsudake@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
62 lines
1.2 KiB
YAML
62 lines
1.2 KiB
YAML
version: 2
|
|
updates:
|
|
- package-ecosystem: github-actions
|
|
directory: /
|
|
schedule:
|
|
interval: weekly
|
|
open-pull-requests-limit: 5
|
|
groups:
|
|
github-actions:
|
|
patterns:
|
|
- "*"
|
|
|
|
- package-ecosystem: docker
|
|
directories:
|
|
- /cmd/builder
|
|
- /cmd/fetcher
|
|
- /cmd/fission-bundle
|
|
- /cmd/preupgradechecks
|
|
- /cmd/reporter
|
|
schedule:
|
|
interval: weekly
|
|
open-pull-requests-limit: 5
|
|
exclude-paths:
|
|
- "test/**"
|
|
groups:
|
|
docker-images:
|
|
patterns:
|
|
- "*"
|
|
|
|
- package-ecosystem: gomod
|
|
directory: /
|
|
schedule:
|
|
interval: weekly
|
|
open-pull-requests-limit: 5
|
|
exclude-paths:
|
|
- "test/**"
|
|
groups:
|
|
go-dependencies:
|
|
patterns:
|
|
- "*"
|
|
|
|
- package-ecosystem: helm
|
|
directory: /charts/fission-all
|
|
schedule:
|
|
interval: weekly
|
|
open-pull-requests-limit: 5
|
|
groups:
|
|
helm-charts:
|
|
patterns:
|
|
- "*"
|
|
|
|
- package-ecosystem: npm
|
|
directory: /
|
|
schedule:
|
|
interval: weekly
|
|
open-pull-requests-limit: 5
|
|
exclude-paths:
|
|
- "test/**"
|
|
groups:
|
|
npm-dependencies:
|
|
patterns:
|
|
- "*" |