diff --git a/.github/workflows/crowdin.yml b/.github/workflows/crowdin.yml index 464e82e7c7..848375e4b0 100644 --- a/.github/workflows/crowdin.yml +++ b/.github/workflows/crowdin.yml @@ -9,8 +9,6 @@ concurrency: cancel-in-progress: true jobs: - required-checks: - uses: calcom/cal.com/.github/workflows/required-checks.yml@main synchronize-with-crowdin: runs-on: ubuntu-latest diff --git a/.github/workflows/required-checks.yml b/.github/workflows/required-checks.yml deleted file mode 100644 index af0bce1bae..0000000000 --- a/.github/workflows/required-checks.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: "Meta Workflow: Require Conditional Status Checks" -on: - pull_request: - branches: - - main - workflow_call: -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true -jobs: - required-checks: - runs-on: ubuntu-latest - steps: - - name: Ensure All Conditional Checks Have Passed - uses: blend/require-conditional-status-checks@2022.02.04 - with: - timeout: 15m - github-token: ${{ github.token }} - interval: 20s - # Question marks aren't working - # @see https://github.com/blend/require-conditional-status-checks/pull/11 - checks-yaml: | - - job: lint - paths: - - /**/*.jsx - - /**/*.js - - /**/*.tsx - - /**/*.ts - - job: check-types - paths: - - /**/*.tsx - - /**/*.ts - - job: e2e - paths: - - /apps/web/** - - /packages/** - - job: e2e-embed - paths: - - /apps/web/** - - /packages/embeds/** - - job: test - paths: - - /apps/web/** - - /packages/**