From f2ed93a0183c795f3a68fb2e27144e799a5e7671 Mon Sep 17 00:00:00 2001 From: Tellsanguis Date: Thu, 13 Nov 2025 19:56:13 +0100 Subject: [PATCH] fix(ci): Add workflow_call trigger to enable CD integration 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: