[CI][NITPICK]: Rename prerequisites jobs to changed-files-check (#9670)

Related to https://github.com/twentyhq/twenty/pull/9643

Renaming `prerequisites` jobs to a more accurate `changed-files-check`
This commit is contained in:
Paul Rastoin
2025-01-16 14:09:59 +01:00
committed by GitHub
parent f8ddc02b8e
commit 560f715c37
7 changed files with 30 additions and 30 deletions

View File

@ -14,7 +14,7 @@ env:
STORYBOOK_BUILD_CACHE_KEY: storybook-build-depot-ubuntu-24.04-8-runner
jobs:
prerequisites:
changed-files-check:
uses: ./.github/workflows/changed-files.yaml
with:
files: |
@ -23,8 +23,8 @@ jobs:
packages/twenty-ui/**
packages/twenty-shared/**
front-sb-build:
needs: [prerequisites]
if: needs.prerequisites.outputs.any_changed == 'true'
needs: [changed-files-check]
if: needs.changed-files-check.outputs.any_changed == 'true'
timeout-minutes: 30
runs-on: depot-ubuntu-24.04-8
env:
@ -147,8 +147,8 @@ jobs:
- name: Publish to Chromatic
run: npx nx run twenty-front:chromatic:ci
front-task:
needs: prerequisites
if: needs.prerequisites.outputs.any_changed == 'true'
needs: changed-files-check
if: needs.changed-files-check.outputs.any_changed == 'true'
timeout-minutes: 30
runs-on: depot-ubuntu-24.04-8
env:
@ -193,7 +193,7 @@ jobs:
runs-on: depot-ubuntu-24.04-8
needs:
[
prerequisites,
changed-files-check,
front-task,
front-chromatic-deployment,
merge-reports-and-check-coverage,