Skip to content

Commit 9b36954

Browse files
committed
Merge remote-tracking branch 'origin/main' into refactor/migrate-trpc-stuff-from-features-to-web-6
2 parents fc0b3af + 11b65b2 commit 9b36954

File tree

885 files changed

+10390
-61643
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

885 files changed

+10390
-61643
lines changed

.easignore

Lines changed: 0 additions & 57 deletions
This file was deleted.

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,13 @@ NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE=
209209
NEXT_PUBLIC_IS_PREMIUM_NEW_PLAN=0
210210
NEXT_PUBLIC_STRIPE_PREMIUM_NEW_PLAN_PRICE=
211211
STRIPE_TEAM_MONTHLY_PRICE_ID=
212+
STRIPE_TEAM_ANNUAL_PRICE_ID=
212213
NEXT_PUBLIC_STRIPE_CREDITS_PRICE_ID=
213214
ORG_MONTHLY_CREDITS=
214215
STRIPE_TEAM_PRODUCT_ID=
215216
# It is a price ID in the product with id STRIPE_ORG_PRODUCT_ID
216217
STRIPE_ORG_MONTHLY_PRICE_ID=
218+
STRIPE_ORG_ANNUAL_PRICE_ID=
217219
STRIPE_ORG_PRODUCT_ID=
218220
# Used to pass trial days for orgs during the Stripe checkout session
219221
STRIPE_ORG_TRIAL_DAYS=

.github/CODEOWNERS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,11 @@
3737
/packages/trpc/server/routers/viewer/bookings/get.handler.ts @calcom/Foundation
3838
/packages/trpc/server/routers/viewer/slots/**/* @calcom/Foundation
3939
/packages/ui/**/* @calcom/Consumer @calcom/Foundation
40+
41+
# Exclude test files from requiring foundation/consumer approval
42+
**/*.spec.*
43+
**/*.e2e.*
44+
**/*.e2e-spec.*
45+
**/*.test.*
46+
**/*.test-suite.*
47+
**/*.integration-test.*

.github/ISSUE_TEMPLATE/companion.md

Lines changed: 0 additions & 120 deletions
This file was deleted.

.github/workflows/companion-build.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.

.github/workflows/companion-lint.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/companion-typecheck.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/workflows/pr.yml

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ jobs:
167167
pull-requests: read
168168
outputs:
169169
has-files-requiring-all-checks: ${{ steps.filter-exclusions.outputs.has-files-requiring-all-checks }}
170-
has-companion: ${{ steps.filter-inclusions.outputs.has-companion }}
171170
has-api-v2-changes: ${{ steps.filter-inclusions.outputs.has-api-v2-changes }}
172171
has-prisma-changes: ${{ steps.filter-inclusions.outputs.has-prisma-changes }}
173172
has-agents-changes: ${{ steps.filter-inclusions.outputs.has-agents-changes }}
@@ -197,7 +196,6 @@ jobs:
197196
filters: |
198197
has-files-requiring-all-checks:
199198
- '**'
200-
- '!companion/**'
201199
- '!.vscode/**'
202200
- '!**/*.md'
203201
- '!**/*.mdx'
@@ -213,8 +211,6 @@ jobs:
213211
filters: |
214212
has-agents-changes:
215213
- "agents/**"
216-
has-companion:
217-
- "companion/**"
218214
has-api-v2-changes:
219215
- "apps/api/v2/**"
220216
- "packages/platform-constants/**"
@@ -387,27 +383,6 @@ jobs:
387383
uses: ./.github/workflows/docs-build.yml
388384
secrets: inherit
389385

390-
build-companion:
391-
name: Companion builds
392-
needs: [prepare]
393-
if: needs.prepare.outputs.has-companion == 'true'
394-
uses: ./.github/workflows/companion-build.yml
395-
secrets: inherit
396-
397-
typecheck-companion:
398-
name: Type Checks
399-
needs: [prepare]
400-
if: needs.prepare.outputs.has-companion == 'true'
401-
uses: ./.github/workflows/companion-typecheck.yml
402-
secrets: inherit
403-
404-
lint-companion:
405-
name: Linters
406-
needs: [prepare]
407-
if: needs.prepare.outputs.has-companion == 'true'
408-
uses: ./.github/workflows/companion-lint.yml
409-
secrets: inherit
410-
411386
build:
412387
name: Production builds
413388
needs: [prepare]
@@ -489,9 +464,6 @@ jobs:
489464
build-api-v2,
490465
build-atoms,
491466
build-docs,
492-
build-companion,
493-
typecheck-companion,
494-
lint-companion,
495467
setup-db,
496468
e2e,
497469
e2e-api-v2,
@@ -540,14 +512,6 @@ jobs:
540512
needs.e2e-app-store.result != 'success'
541513
)
542514
) ||
543-
(
544-
needs.prepare.outputs.has-companion == 'true' &&
545-
(
546-
needs.build-companion.result != 'success' ||
547-
needs.typecheck-companion.result != 'success' ||
548-
needs.lint-companion.result != 'success'
549-
)
550-
) ||
551515
(
552516
needs.prepare.outputs.has-agents-changes == 'true' &&
553517
needs.validate-agents-format.result != 'success'

0 commit comments

Comments
 (0)