From a16c2ac31787ea3c1116feaf508060a899eadca4 Mon Sep 17 00:00:00 2001 From: Sagar Khalasi Date: Wed, 27 Nov 2024 13:41:10 +0530 Subject: [PATCH] chore: skipping file change (#37774) ## Description Skipping file change check for client build. Fixes https://app.zenhub.com/workspaces/stability-pod-6690c4814e31602e25cab7fd/issues/gh/appsmithorg/appsmith/37768 ## Automation /ok-to-test tags="" ### :mag: Cypress test results > [!CAUTION] > If you modify the content in this section, you are likely to disrupt the CI result for your PR. ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [x] No ## Summary by CodeRabbit - **Chores** - Updated the workflow configuration to simplify the client build process by removing file change detection. - Introduced a new variable to streamline subsequent steps in the workflow. --- .github/workflows/client-build.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/client-build.yml b/.github/workflows/client-build.yml index 5eddfa82e6..64162384e5 100644 --- a/.github/workflows/client-build.yml +++ b/.github/workflows/client-build.yml @@ -66,11 +66,15 @@ jobs: with: fetch-tags: true - - name: Get changed files in the client folder + # - name: Get changed files in the client folder + # id: changed-files-specific + # uses: tj-actions/changed-files@v41 + # with: + # files: "app/client/**" + + - name: Updating the client changed file variable id: changed-files-specific - uses: tj-actions/changed-files@v41 - with: - files: "app/client/**" + run: echo "any_changed=true" >> "$GITHUB_OUTPUT" #- name: Run step if any file(s) in the client folder change # if: steps.changed-files-specific.outputs.any_changed == 'true'