-
here is my dependabot.yml version: 2
updates:
- package-ecosystem: "pnpm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "monthly" but why github show me this error can you show me how to fix this |
Beta Was this translation helpful? Give feedback.
Answered by
cexra
Jan 18, 2024
Replies: 1 comment
-
I'm sorry, it turns out that I was not careful in reading the documentation to configure the project with pnpm then the package-ecosystem is set with the value "npm". like this version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "monthly" |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cexra
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm sorry, it turns out that I was not careful in reading the documentation
to configure the project with pnpm then the package-ecosystem is set with the value "npm". like this