dependabot.yml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. version: 2
  2. updates:
  3. # npm updates for frontend - targeting "next" branch
  4. - package-ecosystem: "npm"
  5. directory: "/frontend"
  6. schedule:
  7. interval: "weekly"
  8. target-branch: "next"
  9. open-pull-requests-limit: 10
  10. labels:
  11. - "3k"
  12. - "dependencies"
  13. cooldown:
  14. default-days: 7
  15. # npm updates for frontend - targeting "release/2k" branch (security updates only)
  16. - package-ecosystem: "npm"
  17. directory: "/frontend"
  18. schedule:
  19. interval: "weekly"
  20. target-branch: "release/2k"
  21. open-pull-requests-limit: 0
  22. labels:
  23. - "2k"
  24. - "dependencies"
  25. cooldown:
  26. default-days: 7
  27. # npm updates for integration-tests - targeting "next" branch
  28. - package-ecosystem: "npm"
  29. directory: "/integration-tests"
  30. schedule:
  31. interval: "weekly"
  32. target-branch: "next"
  33. open-pull-requests-limit: 10
  34. labels:
  35. - "3k"
  36. - "dependencies"
  37. cooldown:
  38. default-days: 7
  39. # npm updates for integration-tests - targeting "release/2k" branch (security updates only)
  40. - package-ecosystem: "npm"
  41. directory: "/integration-tests"
  42. schedule:
  43. interval: "weekly"
  44. target-branch: "release/2k"
  45. open-pull-requests-limit: 0
  46. labels:
  47. - "2k"
  48. - "dependencies"
  49. cooldown:
  50. default-days: 7
  51. # Go modules updates for service - targeting "next" branch
  52. - package-ecosystem: "gomod"
  53. directory: "/service"
  54. schedule:
  55. interval: "weekly"
  56. target-branch: "next"
  57. open-pull-requests-limit: 10
  58. labels:
  59. - "3k"
  60. - "dependencies"
  61. cooldown:
  62. default-days: 7
  63. # Go modules updates for service - targeting "release/2k" branch (security updates only)
  64. - package-ecosystem: "gomod"
  65. directory: "/service"
  66. schedule:
  67. interval: "weekly"
  68. target-branch: "release/2k"
  69. open-pull-requests-limit: 0
  70. labels:
  71. - "2k"
  72. - "dependencies"
  73. cooldown:
  74. default-days: 7
  75. # Go modules updates for lang - targeting "next" branch
  76. - package-ecosystem: "gomod"
  77. directory: "/lang"
  78. schedule:
  79. interval: "weekly"
  80. target-branch: "next"
  81. open-pull-requests-limit: 10
  82. labels:
  83. - "3k"
  84. - "dependencies"
  85. cooldown:
  86. default-days: 7
  87. # Go modules updates for lang - targeting "release/2k" branch (security updates only)
  88. - package-ecosystem: "gomod"
  89. directory: "/lang"
  90. schedule:
  91. interval: "weekly"
  92. target-branch: "release/2k"
  93. open-pull-requests-limit: 0
  94. labels:
  95. - "2k"
  96. - "dependencies"
  97. cooldown:
  98. default-days: 7
  99. # Docker updates - targeting "next" branch
  100. - package-ecosystem: "docker"
  101. directory: "/"
  102. schedule:
  103. interval: "weekly"
  104. target-branch: "next"
  105. open-pull-requests-limit: 10
  106. labels:
  107. - "3k"
  108. - "dependencies"
  109. cooldown:
  110. default-days: 7
  111. # Docker updates - targeting "release/2k" branch (security updates only)
  112. - package-ecosystem: "docker"
  113. directory: "/"
  114. schedule:
  115. interval: "weekly"
  116. target-branch: "release/2k"
  117. open-pull-requests-limit: 0
  118. labels:
  119. - "2k"
  120. - "dependencies"
  121. cooldown:
  122. default-days: 7