From 733ffbff31360cadf2736a6255c70971a8bb887f Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Tue, 20 Jan 2026 12:13:14 +0100 Subject: [PATCH] chore(ci): update workflow to replace `github` context with `gitea` for event and ref conditions --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5030d0d..1874859 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: needs: validate # Déclenchement uniquement sur push sur main ou tag de version # Gitea supporte le contexte 'github' pour la compatibilité - if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) + if: gitea.event_name == 'push' && (gitea.ref == 'refs/heads/main' || startsWith(gitea.ref, 'refs/tags/v')) runs-on: ubuntu-latest steps: - name: Checkout code