From cbb7c149342e969964064c6d39b1f467d00b5f26 Mon Sep 17 00:00:00 2001 From: Tellsanguis Date: Thu, 13 Nov 2025 19:56:13 +0100 Subject: [PATCH] =?UTF-8?q?fix(ci):=20Ajout=20trigger=20workflow=5Fcall=20?= =?UTF-8?q?pour=20int=C3=A9gration=20CD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- .forgejo/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index d484eb8..87bf0c0 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -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: