c71663946e
## What Introduces a `packages/twenty-apps/public/` folder and moves the publicly publishable apps into it, then generalizes the apps CI workflow to cover both folders. ### Moves The following apps were moved from `packages/twenty-apps/internal/` to `packages/twenty-apps/public/` (via `git mv`, history preserved): - `people-data-labs` - `twenty-discord` - `twenty-exa` - `twenty-fireflies` - `twenty-last-contact` - `twenty-linear` - `twenty-meeting-bot` - `twenty-slack` These remain in `internal/`: `self-hosting`, `twenty-for-twenty`, `twenty-partners`. ### Workflow - Renamed `.github/workflows/ci-internal-apps.yaml` → `.github/workflows/ci-twenty-apps.yaml`. - The discover job now scans **both** `packages/twenty-apps/internal` and `packages/twenty-apps/public`: - the "no nested `.github`" guard checks both folders, - `changed-files` watches both globs, - the matrix builder iterates over both roots (guarded with `existsSync` so a missing folder is a no-op). - Each matrix entry still carries its own `path`, so the `ci` job works unchanged regardless of which folder an app lives in. ## Notes - The apps are standalone packages (own `yarn.lock`, not part of the root Nx workspaces), so no root `package.json` / `nx.json` / `tsconfig` changes were needed. - The companion publish workflow lives in `twentyhq/twenty-infra` (`publish-internal-apps.yaml` → `publish-public-apps.yaml`) and is updated in a paired PR. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- _Generated by [Claude Code](https://claude.ai/code/session_01Fmu3DWf1yTTkVW49eSkXwh)_ <!-- This is an auto-generated description by cubic. --> <a href="https://cubic.dev/pr/twentyhq/twenty/pull/22096?utm_source=github" target="_blank" rel="noopener noreferrer" data-no-image-dialog="true"><picture><source media="(prefers-color-scheme: dark)" srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img alt="Review in cubic" src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a> <!-- End of auto-generated description by cubic. -->
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
version: 2
|
|
updates:
|
|
- package-ecosystem: "npm"
|
|
directory: "/"
|
|
exclude-paths:
|
|
- "packages/twenty-apps/**"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 3
|
|
versioning-strategy: "lockfile-only"
|
|
assignees:
|
|
- "mabdullahabaid"
|
|
ignore:
|
|
- dependency-name: "@graphql-yoga/nestjs"
|
|
- dependency-name: "@nestjs/graphql"
|
|
- dependency-name: "@ptc-org/nestjs-query-graphql"
|
|
- dependency-name: "typeorm"
|
|
# chokidar is pinned to v3 via a resolution: v4+ dropped native macOS
|
|
# FSEvents and hits EMFILE on a repo this size (see #20316)
|
|
- dependency-name: "chokidar"
|
|
# Public Twenty apps are standalone packages (own lockfiles) excluded from the
|
|
# root entry above. Each app folder is updated weekly, grouped into a single PR.
|
|
- package-ecosystem: "npm"
|
|
directories:
|
|
- "/packages/twenty-apps/public/*"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 3
|
|
versioning-strategy: "lockfile-only"
|
|
groups:
|
|
twenty-apps-public:
|
|
patterns:
|
|
- "*"
|
|
# Internal Twenty apps, same treatment as the public apps above.
|
|
- package-ecosystem: "npm"
|
|
directories:
|
|
- "/packages/twenty-apps/internal/*"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 3
|
|
versioning-strategy: "lockfile-only"
|
|
groups:
|
|
twenty-apps-internal:
|
|
patterns:
|
|
- "*"
|