From 0f98d06090343c03863755dff343ed94da32ab5e Mon Sep 17 00:00:00 2001 From: yatinappsmith <84702014+yatinappsmith@users.noreply.github.com> Date: Tue, 6 Aug 2024 19:35:30 +0530 Subject: [PATCH] CI: commented files changed step. It is a notification step (#35460) commented files changed step. It is a notification step ## Summary by CodeRabbit - **Chores** - Modified the GitHub Actions workflow to simplify job flow by commenting out the command execution for changes in the client folder, effectively disabling that functionality. (cherry picked from commit b3c35e9e6833a061317673a699338f8f0ecc983b) --- .github/workflows/client-build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/client-build.yml b/.github/workflows/client-build.yml index d37853acca..e247382c9b 100644 --- a/.github/workflows/client-build.yml +++ b/.github/workflows/client-build.yml @@ -72,13 +72,13 @@ jobs: with: files: "app/client/**" - - name: Run step if any file(s) in the client folder change - if: steps.changed-files-specific.outputs.any_changed == 'true' - env: - ALL_CHANGED_FILES: ${{ steps.changed-files-specific.outputs.all_changed_files }} - run: | - echo "One or more files in the server folder has changed." - echo "List all the files that have changed: $ALL_CHANGED_FILES" + #- name: Run step if any file(s) in the client folder change + # if: steps.changed-files-specific.outputs.any_changed == 'true' + # env: + # ALL_CHANGED_FILES: ${{ steps.changed-files-specific.outputs.all_changed_files }} + # run: | + # echo "One or more files in the server folder has changed." + # echo "List all the files that have changed: $ALL_CHANGED_FILES" - name: Check compliance if: inputs.pr != 0 && steps.changed-files-specific.outputs.any_changed == 'true'