dependabot.yml 919 B

1234567891011121314151617181920212223
  1. version: 2
  2. updates:
  3. - package-ecosystem: "npm"
  4. directory: "/"
  5. schedule:
  6. interval: "daily"
  7. pull-request-branch-name:
  8. # Separate sections of the branch name with a hyphen
  9. # Docker images use the branch name and do not support slashes in tags
  10. # https://github.com/overleaf/google-ops/issues/822
  11. # https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#pull-request-branch-nameseparator
  12. separator: "-"
  13. # Block informal upgrades -- security upgrades use a separate queue.
  14. # https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#open-pull-requests-limit
  15. open-pull-requests-limit: 0
  16. # currently assign team-magma to all dependabot PRs - this may change in
  17. # future if we reorganise teams
  18. labels:
  19. - "dependencies"
  20. - "type:maintenance"