From a2a666d80d8210da8ef03dc3f7fd188eab9a8a34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Mon, 4 Nov 2024 08:36:44 +0100 Subject: [PATCH] Fix CI not running --- .github/workflows/ci-utils.yaml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/ci-utils.yaml b/.github/workflows/ci-utils.yaml index 6cbd99b28803..fccfca98d8ab 100644 --- a/.github/workflows/ci-utils.yaml +++ b/.github/workflows/ci-utils.yaml @@ -23,16 +23,9 @@ jobs: if: github.event.action != 'closed' steps: - uses: actions/checkout@v4 - - name: Check for changed files - id: changed-files - uses: tj-actions/changed-files@v11 - with: - files: 'packages/twenty-utils/**' - name: Install dependencies - if: steps.changed-files.outputs.changed == 'true' uses: ./.github/workflows/actions/yarn-install - name: Utils / Run Danger.js - if: steps.changed-files.outputs.changed == 'true' run: cd packages/twenty-utils && npx nx danger:ci env: DANGER_GITHUB_API_TOKEN: ${{ github.token }} @@ -42,16 +35,9 @@ jobs: if: github.event.action == 'closed' && github.event.pull_request.merged == true steps: - uses: actions/checkout@v4 - - name: Check for changed files - id: changed-files - uses: tj-actions/changed-files@v11 - with: - files: 'packages/twenty-utils/**' - name: Install dependencies - if: steps.changed-files.outputs.changed == 'true' uses: ./.github/workflows/actions/yarn-install - name: Run congratulate-dangerfile.js - if: steps.changed-files.outputs.changed == 'true' run: cd packages/twenty-utils && npx nx danger:congratulate env: DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}