fix(ci): Ajout trigger workflow_call pour intégration CD

The CI workflow needs workflow_call to be callable by the CD workflow. Without this, the CD workflow cannot invoke CI as a reusable workflow.
This commit is contained in:
Tellsanguis 2025-11-13 19:56:13 +01:00
parent 924594989e
commit cbb7c14934

View file

@ -6,6 +6,7 @@ on:
- '**' - '**'
- '!main' # Exclude main branch (CD workflow handles it) - '!main' # Exclude main branch (CD workflow handles it)
pull_request: pull_request:
workflow_call: # Allow this workflow to be called by other workflows
jobs: jobs:
ci-terraform: ci-terraform: