dependabot.yml 706 B

12345678910111213141516171819202122232425
  1. # To get started with Dependabot version updates, you'll need to specify which
  2. # package ecosystems to update and where the package manifests are located.
  3. # Please see the documentation for all configuration options:
  4. # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
  5. version: 2
  6. updates:
  7. - package-ecosystem: "pip"
  8. directory: "/"
  9. target-branch: "dev"
  10. schedule:
  11. interval: "monthly"
  12. groups:
  13. pip:
  14. patterns:
  15. - "*"
  16. - package-ecosystem: "npm"
  17. directory: "/"
  18. target-branch: "dev"
  19. schedule:
  20. interval: "monthly"
  21. groups:
  22. npm:
  23. patterns:
  24. - "*"