gemini-code-assist[bot] commented on code in PR #19952: URL: https://github.com/apache/tvm/pull/19952#discussion_r3524870973
########## .github/dependabot.yml: ########## @@ -0,0 +1,15 @@ +# See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#about-the-dependabotyml-file +version: 2 + +updates: + - package-ecosystem: "npm" + directory: "/" Review Comment:  The `package.json` and `package-lock.json` files for the `npm` ecosystem are located in the `web/` directory rather than the root directory. Setting `directory` to `"/"` will cause Dependabot to fail to locate the manifest files. It should be updated to `"/web"`. ```yaml directory: "/web" ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
