From 12140dee6fb24d52e763ea2664378ba9fe546f18 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Sun, 23 Nov 2025 13:27:47 -0800 Subject: [PATCH] Disables waiting for backend/frontend tests --- .github/workflows/ci.yml | 49 ---------------------------------------- 1 file changed, 49 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1cc4c3ce..c20a01c38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,52 +17,7 @@ env: DEFAULT_PYTHON_VERSION: "3.11" NLTK_DATA: "/usr/share/nltk_data" jobs: - detect-duplicate: - name: Detect Duplicate Run - runs-on: ubuntu-24.04 - outputs: - should_run: ${{ steps.check.outputs.should_run }} - steps: - - name: Check if workflow should run - id: check - uses: actions/github-script@v8 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - script: | - if (context.eventName !== 'push') { - core.info('Not a push event; running workflow.'); - core.setOutput('should_run', 'true'); - return; - } - - const ref = context.ref || ''; - if (!ref.startsWith('refs/heads/')) { - core.info('Push is not to a branch; running workflow.'); - core.setOutput('should_run', 'true'); - return; - } - - const branch = ref.substring('refs/heads/'.length); - const { owner, repo } = context.repo; - const prs = await github.paginate(github.rest.pulls.list, { - owner, - repo, - state: 'open', - head: `${owner}:${branch}`, - per_page: 100, - }); - - if (prs.length === 0) { - core.info(`No open PR found for ${branch}; running workflow.`); - core.setOutput('should_run', 'true'); - } else { - core.info(`Found ${prs.length} open PR(s) for ${branch}; skipping duplicate push run.`); - core.setOutput('should_run', 'false'); - } pre-commit: - needs: - - detect-duplicate - if: needs.detect-duplicate.outputs.should_run == 'true' name: Linting Checks runs-on: ubuntu-24.04 steps: @@ -359,10 +314,6 @@ jobs: concurrency: group: ${{ github.workflow }}-build-docker-image-${{ github.ref_name }} cancel-in-progress: true - needs: - - tests-backend - - tests-frontend - - tests-frontend-e2e steps: - name: Prepare build variables id: build-vars