forked from calcom/cal.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '54162f85682c8a506c1495f22d7059db360ba161' into webflux
* commit '54162f85682c8a506c1495f22d7059db360ba161': (166 commits) chore: Release v4.1.12 (calcom#15432) fix (calcom#15431) Use "standalone" output to build Next.js as a standalone app when being built e.g. in Docker. (calcom#15405) add zod.ts for google meet (calcom#15203) Update semantic-pull-requests.yml (calcom#15421) chore: Upgrade Sentry in v1, v2 & web (calcom#15396) refactor: recording and transcript webhook (calcom#15419) fix: reschedule and cancel unconfirmed event from email (calcom#15013) chore: added platform admin to seed.ts (calcom#15119) fix: margin top in booker embed (calcom#15412) Revert "fix: bookings made via API don't include the specified location (calcom#15067)" (calcom#15417) chore: v2 managed user inform when access token expires (calcom#15414) release: v4.1.11 (calcom#15406) fix: bookings made via API don't include the specified location (calcom#15067) fix: fixed the padding at the footer in /signup (calcom#15394) feat: generate transcription from recording and API endpoint (calcom#15358) refactor: v2 schedules (calcom#15403) fix: atoms useCheck and bump atoms version (calcom#15390) feat: go to Assignment tab after creation and warn if existing without assigning (calcom#14882) feat: Add `VariableNode` and `AddVariablesPlugin` (calcom#15293) ...
- Loading branch information
Showing
765 changed files
with
23,203 additions
and
4,715 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
node_modules | ||
apps/api/v2/dist | ||
packages/platform/**/dist/* | ||
**/**/node_modules | ||
**/**/.next | ||
**/**/public | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
"❗️ migrations": | ||
- packages/prisma/migrations/**/migration.sql | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- packages/prisma/migrations/**/migration.sql | ||
|
||
"❗️ .env changes": | ||
- .env.example | ||
- .env.appStore.example | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- .env.example | ||
- .env.appStore.example |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: All checks | ||
|
||
on: | ||
merge_group: | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
type-check: | ||
name: Type check | ||
uses: ./.github/workflows/check-types.yml | ||
secrets: inherit | ||
|
||
lint: | ||
name: Linters | ||
uses: ./.github/workflows/lint.yml | ||
secrets: inherit | ||
|
||
unit-test: | ||
name: Tests | ||
uses: ./.github/workflows/unit-tests.yml | ||
secrets: inherit | ||
|
||
build-api-v1: | ||
name: Production builds | ||
uses: ./.github/workflows/api-v1-production-build.yml | ||
secrets: inherit | ||
|
||
build-api-v2: | ||
name: Production builds | ||
uses: ./.github/workflows/api-v2-production-build.yml | ||
secrets: inherit | ||
|
||
build: | ||
name: Production builds | ||
uses: ./.github/workflows/production-build-without-database.yml | ||
secrets: inherit | ||
|
||
integration-test: | ||
name: Tests | ||
needs: [lint, build, build-api-v1, build-api-v2] | ||
uses: ./.github/workflows/integration-tests.yml | ||
secrets: inherit | ||
|
||
e2e: | ||
name: Tests | ||
needs: [lint, build, build-api-v1, build-api-v2] | ||
uses: ./.github/workflows/e2e.yml | ||
secrets: inherit | ||
|
||
e2e-app-store: | ||
name: Tests | ||
needs: [lint, build, build-api-v1, build-api-v2] | ||
uses: ./.github/workflows/e2e-app-store.yml | ||
secrets: inherit | ||
|
||
e2e-embed: | ||
name: Tests | ||
needs: [lint, build, build-api-v1, build-api-v2] | ||
uses: ./.github/workflows/e2e-embed.yml | ||
secrets: inherit | ||
|
||
e2e-embed-react: | ||
name: Tests | ||
needs: [lint, build, build-api-v1, build-api-v2] | ||
uses: ./.github/workflows/e2e-embed-react.yml | ||
secrets: inherit | ||
|
||
analyze: | ||
name: Analyze Build | ||
needs: [build] | ||
uses: ./.github/workflows/nextjs-bundle-analysis.yml | ||
secrets: inherit | ||
|
||
required: | ||
needs: [lint, type-check, unit-test, integration-test, build, build-api-v1, build-api-v2, e2e, e2e-embed, e2e-embed-react, e2e-app-store] | ||
if: always() | ||
runs-on: buildjet-2vcpu-ubuntu-2204 | ||
steps: | ||
- name: fail if conditional jobs failed | ||
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled') | ||
run: exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.