Copilot commented on code in PR #20: URL: https://github.com/apache/solr-orbit/pull/20#discussion_r3293598725
########## .github/dependabot.yml: ########## @@ -0,0 +1,11 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" Review Comment: The repo doesn’t appear to have a supported pip dependency manifest in `/` (no `requirements*.txt`, `Pipfile`, or `pyproject.toml`); dependencies are declared in `setup.py`. Dependabot’s `pip` ecosystem typically only updates supported manifest files, so this configuration may result in no Python dependency PRs despite the PR description/issue stating weekly `pip` updates. Consider adding a `requirements.txt`/`requirements-dev.txt` (or migrating to `pyproject.toml`) so Dependabot has a file it can update. -- 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]
