Skip to content

Commit

Permalink
ci(dependabot): comment out npm ecosystem
Browse files Browse the repository at this point in the history
We do not use dependabot with npm yet because our build process is currently incompatible with "pure ESM build" dependencies. 

See also  #3841
  • Loading branch information
stefreak authored Mar 6, 2023
1 parent 2f72b74 commit e486923
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,19 @@ updates:
# Automatically update GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
open-pull-requests-limit: 10
open-pull-requests-limit: 5
schedule:
interval: "weekly"
# Automatically update Dockerfile FROM images
- package-ecosystem: "docker"
directory: "/"
open-pull-requests-limit: 10
open-pull-requests-limit: 5
schedule:
interval: "daily"
# TODO: Consider enabling the NPM package ecosystem once we have fixed our build process to support pure ESM build dependencies, see also https://github.com/garden-io/garden/issues/3841
# Automatically update NPM packages
- package-ecosystem: "npm"
directory: "/"
open-pull-requests-limit: 3 # for now, once 0.13 landed we can increase this
schedule:
interval: "daily"
# - package-ecosystem: "npm"
# directory: "/"
# open-pull-requests-limit: 5
# schedule:
# interval: "daily"

0 comments on commit e486923

Please sign in to comment.