Skip to content

Commit 740ca55

Browse files
authored
Fix Danger CI not running (#8299)
The Danger CI was not running anymore (we need it for CLA/Congrats bot)
1 parent b66bdd9 commit 740ca55

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

.github/workflows/ci-utils.yaml

-14
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,9 @@ jobs:
2323
if: github.event.action != 'closed'
2424
steps:
2525
- uses: actions/checkout@v4
26-
- name: Check for changed files
27-
id: changed-files
28-
uses: tj-actions/changed-files@v11
29-
with:
30-
files: 'packages/twenty-utils/**'
3126
- name: Install dependencies
32-
if: steps.changed-files.outputs.changed == 'true'
3327
uses: ./.github/workflows/actions/yarn-install
3428
- name: Utils / Run Danger.js
35-
if: steps.changed-files.outputs.changed == 'true'
3629
run: cd packages/twenty-utils && npx nx danger:ci
3730
env:
3831
DANGER_GITHUB_API_TOKEN: ${{ github.token }}
@@ -42,16 +35,9 @@ jobs:
4235
if: github.event.action == 'closed' && github.event.pull_request.merged == true
4336
steps:
4437
- uses: actions/checkout@v4
45-
- name: Check for changed files
46-
id: changed-files
47-
uses: tj-actions/changed-files@v11
48-
with:
49-
files: 'packages/twenty-utils/**'
5038
- name: Install dependencies
51-
if: steps.changed-files.outputs.changed == 'true'
5239
uses: ./.github/workflows/actions/yarn-install
5340
- name: Run congratulate-dangerfile.js
54-
if: steps.changed-files.outputs.changed == 'true'
5541
run: cd packages/twenty-utils && npx nx danger:congratulate
5642
env:
5743
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)