mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
Exclude community apps from Dependabot scanning (#17345)
## Summary - Adds `exclude-paths` configuration to Dependabot to skip `packages/twenty-apps/community/**` - Community-maintained apps have their own dependency management and don't need the same security requirements as core packages ## Test plan - Verify Dependabot no longer creates alerts/PRs for dependencies in community apps
This commit is contained in:
parent
d537d941a7
commit
6b63a28cd2
1 changed files with 2 additions and 0 deletions
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
|
|
@ -2,6 +2,8 @@ version: 2
|
|||
updates:
|
||||
- package-ecosystem: "npm"
|
||||
directory: "/"
|
||||
exclude-paths:
|
||||
- "packages/twenty-apps/community/**"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
open-pull-requests-limit: 3
|
||||
|
|
|
|||
Loading…
Reference in a new issue