renovate.json5 742 B

123456789101112131415161718192021222324252627282930
  1. {
  2. $schema: "https://docs.renovatebot.com/renovate-schema.json",
  3. extends: ["config:recommended"],
  4. labels: ["dependencies", "automerge"],
  5. prHourlyLimit: 0,
  6. prConcurrentLimit: 10,
  7. timezone: "Asia/Tokyo",
  8. schedule: ["after 9am and before 1pm on Saturday"],
  9. packageRules: [
  10. {
  11. groupName: "patch updated gems",
  12. matchDatasources: ["rubygems"],
  13. matchUpdateTypes: ["patch", "digest"],
  14. },
  15. {
  16. groupName: "minor updated gems",
  17. matchDatasources: ["rubygems"],
  18. matchUpdateTypes: ["minor"],
  19. },
  20. {
  21. matchDatasources: ["rubygems"],
  22. rangeStrategy: "bump",
  23. },
  24. ],
  25. vulnerabilityAlerts: {
  26. enabled: true,
  27. addLabels: ["security"],
  28. },
  29. osvVulnerabilityAlerts: true,
  30. }