From d030c81852d936d6f40f5f77e98f2de074b7f88b Mon Sep 17 00:00:00 2001 From: yashpmohod <117890382+yashpmohod@users.noreply.github.com> Date: Tue, 18 Jun 2024 19:39:24 +0530 Subject: [PATCH] Disable the deploy-affected job in the pull-request.yml workflow (#253) --- .github/workflows/pull-request.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 0ff18ff5..2149cfa4 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -89,26 +89,3 @@ jobs: cache: "npm" - run: npm ci - run: npx nx affected -t test-npm-package - - deploy-affected: - name: Deploy Applications - if: ${{ github.ref == 'refs/heads/main' }} - needs: - - format - - test-affected - - build-affected - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - uses: nrwl/nx-set-shas@v3 - - uses: actions/setup-node@v4 - with: - node-version: ${{ env.NODE_VERSION }} - cache: "npm" - - run: npm ci - - run: npx nx affected -t deploy --parallel=5 - env: - WEBHOOK_URL: ${{ vars.WEBHOOK_URL }} - WEBHOOK_TOKEN: ${{ secrets.WEBHOOK_TOKEN }}