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

Le workflow CI nécessite workflow_call pour être appelable par workflow CD. Sans cela, le workflow CD ne peut pas invoquer CI comme workflow réutilisable.
This commit is contained in:
Tellsanguis 2025-11-13 19:56:13 +01:00
parent dc5fc28ff1
commit 83f9b4def8

View file

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