From 47b31acc2102b6fddaf0a6a9d528309078fe791a Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Sun, 14 Jun 2026 20:39:17 +0200 Subject: [PATCH] ci: exclude all twenty-apps from dependabot (#21554) Dependabot currently only excludes `packages/twenty-apps/community/**`, but the `twenty-apps` package also contains `examples`, `fixtures`, and `internal` apps that shouldn't be picked up either. This broadens the `exclude-paths` to `packages/twenty-apps/**` so Dependabot ignores apps entirely. Review in cubic --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fcab644b97..e92f65f42f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,7 @@ updates: - package-ecosystem: "npm" directory: "/" exclude-paths: - - "packages/twenty-apps/community/**" + - "packages/twenty-apps/**" schedule: interval: "weekly" open-pull-requests-limit: 3