From 23c175d6432fb3c6420e8532ce54f890a8487882 Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Wed, 8 Apr 2026 15:31:15 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20test:=20temporarily=20enable=20b?= =?UTF-8?q?adge=20updates=20on=20feature=20branch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Temporarily modify workflow condition to test badge updates on feature/user-authentication-bdd branch. Will revert to main-only after testing. --- .gitea/workflows/ci-cd.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-cd.yaml b/.gitea/workflows/ci-cd.yaml index a880a74..300bae6 100644 --- a/.gitea/workflows/ci-cd.yaml +++ b/.gitea/workflows/ci-cd.yaml @@ -238,7 +238,7 @@ jobs: # Single badge update step using environment variables (KISS approach) - name: Update all badges (single commit) - if: always() && github.ref == 'refs/heads/main' && github.actor != 'ci-bot' + if: always() && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature/user-authentication-bdd') && github.actor != 'ci-bot' run: | echo "🎯 Updating all badges using environment variables..." echo "BDD Coverage: ${DLC_BDD_COVERAGE:-Not set}"