dependabot.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. version: 2
  2. updates:
  3. # Keep submodules up to date in 'main'.
  4. - package-ecosystem: "gitsubmodule"
  5. directory: "/"
  6. schedule:
  7. # Weekly interval opens PRs on Monday.
  8. interval: "weekly"
  9. allow:
  10. - dependency-type: "all"
  11. commit-message:
  12. prefix: "[main] "
  13. include: scope
  14. labels:
  15. - area-infrastructure
  16. - package-ecosystem: "github-actions"
  17. directory: "/"
  18. schedule:
  19. # Weekly interval opens PRs on Monday.
  20. interval: "weekly"
  21. commit-message:
  22. prefix: "[main] "
  23. include: scope
  24. labels:
  25. - area-infrastructure
  26. # Keep submodules up to date in 'release/*' branches. (Unfortunately Dependabot security PRs can't target these.)
  27. # Monthly interval opens PRs on the first of each month.
  28. - package-ecosystem: "gitsubmodule"
  29. directory: "/"
  30. schedule:
  31. interval: "monthly"
  32. allow:
  33. - dependency-type: "all"
  34. commit-message:
  35. prefix: "[release/2.1] "
  36. include: scope
  37. labels:
  38. - area-infrastructure
  39. target-branch: "release/2.1"
  40. - package-ecosystem: "gitsubmodule"
  41. directory: "/"
  42. schedule:
  43. interval: "monthly"
  44. allow:
  45. - dependency-type: "all"
  46. commit-message:
  47. prefix: "[release/3.1] "
  48. include: scope
  49. labels:
  50. - area-infrastructure
  51. target-branch: "release/3.1"
  52. - package-ecosystem: "gitsubmodule"
  53. directory: "/"
  54. schedule:
  55. interval: "monthly"
  56. allow:
  57. - dependency-type: "all"
  58. commit-message:
  59. prefix: "[release/6.0] "
  60. include: scope
  61. labels:
  62. - area-infrastructure
  63. target-branch: "release/6.0"
  64. - package-ecosystem: "gitsubmodule"
  65. directory: "/"
  66. schedule:
  67. interval: "monthly"
  68. allow:
  69. - dependency-type: "all"
  70. commit-message:
  71. prefix: "[release/7.0] "
  72. include: scope
  73. labels:
  74. - area-infrastructure
  75. target-branch: "release/7.0"