fix(ci): Add workflow_call trigger to enable CD integration
Some checks are pending
CD - Deploy Infrastructure / ci (push) Waiting to run
CD - Deploy Infrastructure / Deploy on pve1 (push) Blocked by required conditions
CD - Deploy Infrastructure / Deploy on pve2 (push) Blocked by required conditions
CD - Deploy Infrastructure / Deploy on pve3 (push) Blocked by required conditions
CD - Deploy Infrastructure / Validate K3s Cluster (push) Blocked by required conditions
CD - Deploy Infrastructure / Deployment Notification (push) Blocked by required conditions

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 801e130679
commit f2ed93a018

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: