diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index e2d773a..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,132 +0,0 @@ -version: 2 -updates: - # npm updates for frontend - targeting "next" branch - - package-ecosystem: "npm" - directory: "/frontend" - schedule: - interval: "weekly" - target-branch: "next" - open-pull-requests-limit: 10 - labels: - - "3k" - - "dependencies" - cooldown: - default-days: 7 - - # npm updates for frontend - targeting "release/2k" branch (security updates only) - - package-ecosystem: "npm" - directory: "/frontend" - schedule: - interval: "weekly" - target-branch: "release/2k" - open-pull-requests-limit: 0 - labels: - - "2k" - - "dependencies" - cooldown: - default-days: 7 - - # npm updates for integration-tests - targeting "next" branch - - package-ecosystem: "npm" - directory: "/integration-tests" - schedule: - interval: "weekly" - target-branch: "next" - open-pull-requests-limit: 10 - labels: - - "3k" - - "dependencies" - cooldown: - default-days: 7 - - # npm updates for integration-tests - targeting "release/2k" branch (security updates only) - - package-ecosystem: "npm" - directory: "/integration-tests" - schedule: - interval: "weekly" - target-branch: "release/2k" - open-pull-requests-limit: 0 - labels: - - "2k" - - "dependencies" - cooldown: - default-days: 7 - - # Go modules updates for service - targeting "next" branch - - package-ecosystem: "gomod" - directory: "/service" - schedule: - interval: "weekly" - target-branch: "next" - open-pull-requests-limit: 10 - labels: - - "3k" - - "dependencies" - cooldown: - default-days: 7 - - # Go modules updates for service - targeting "release/2k" branch (security updates only) - - package-ecosystem: "gomod" - directory: "/service" - schedule: - interval: "weekly" - target-branch: "release/2k" - open-pull-requests-limit: 0 - labels: - - "2k" - - "dependencies" - cooldown: - default-days: 7 - - # Go modules updates for lang - targeting "next" branch - - package-ecosystem: "gomod" - directory: "/lang" - schedule: - interval: "weekly" - target-branch: "next" - open-pull-requests-limit: 10 - labels: - - "3k" - - "dependencies" - cooldown: - default-days: 7 - - # Go modules updates for lang - targeting "release/2k" branch (security updates only) - - package-ecosystem: "gomod" - directory: "/lang" - schedule: - interval: "weekly" - target-branch: "release/2k" - open-pull-requests-limit: 0 - labels: - - "2k" - - "dependencies" - cooldown: - default-days: 7 - - # Docker updates - targeting "next" branch - - package-ecosystem: "docker" - directory: "/" - schedule: - interval: "weekly" - target-branch: "next" - open-pull-requests-limit: 10 - labels: - - "3k" - - "dependencies" - cooldown: - default-days: 7 - - # Docker updates - targeting "release/2k" branch (security updates only) - - package-ecosystem: "docker" - directory: "/" - schedule: - interval: "weekly" - target-branch: "release/2k" - open-pull-requests-limit: 0 - labels: - - "2k" - - "dependencies" - cooldown: - default-days: 7 -