Skip to content

Commit

Permalink
chore: dependabot add package-ecosystem: "npm" (#356)
Browse files Browse the repository at this point in the history
#### What this PR does / why we need it

we should also configure `npm` updates
  • Loading branch information
hilmarf authored Nov 28, 2024
1 parent 3a91e81 commit 2d4bd4b
Showing 1 changed file with 37 additions and 26 deletions.
63 changes: 37 additions & 26 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,40 @@
version: 2

updates:
- package-ecosystem: "github-actions"
directory: "/"
groups:
# xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
ci:
patterns:
- "*"
schedule:
interval: "weekly"
day: "sunday"
labels:
- kind/dependency
- kind/chore
- kind/skip-release-notes
- component/github-actions
- package-ecosystem: "gomod"
directory: "/"
groups:
go:
update-types: ["minor","patch"]
schedule:
interval: "weekly"
day: "sunday"
labels:
- kind/dependency
- kind/chore
- package-ecosystem: "github-actions"
directory: "/"
groups:
# xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
ci:
patterns:
- "*"
schedule:
interval: "weekly"
day: "sunday"
labels:
- kind/dependency
- kind/chore
- kind/skip-release-notes
- component/github-actions
- package-ecosystem: "gomod"
directory: "/"
groups:
go:
update-types: [ "minor", "patch" ]
schedule:
interval: "weekly"
day: "sunday"
labels:
- kind/dependency
- kind/chore
- package-ecosystem: "npm"
directory: "/"
groups:
node:
update-types: [ "minor", "patch" ]
schedule:
interval: "weekly"
day: "sunday"
labels:
- kind/dependency
- kind/chore

0 comments on commit 2d4bd4b

Please sign in to comment.