From bbd67f88c4e0c81336974c16181f492a89d1d826 Mon Sep 17 00:00:00 2001 From: Digital Production Factory Date: Wed, 10 Dec 2025 11:43:44 -0300 Subject: [PATCH] ci: Update Gitea workflow to use DSS_GITEA_TOKEN secret --- .gitea/workflows/dss-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/dss-analysis.yml b/.gitea/workflows/dss-analysis.yml index a779663..23161a6 100644 --- a/.gitea/workflows/dss-analysis.yml +++ b/.gitea/workflows/dss-analysis.yml @@ -49,9 +49,9 @@ jobs: git add .dss/analysis_graph.json git commit -m "chore(dss): Update project analysis context [skip ci]" - # Use the GITEA_TOKEN for authentication + # Use the DSS_GITEA_TOKEN for authentication # GITEA_SERVER_URL and GITEA_REPOSITORY are default environment variables in Gitea Actions. - git push https://dss-agent:${{ secrets.GITEA_TOKEN }}@${GITEA_SERVER_URL}/${GITEA_REPOSITORY}.git HEAD:${GITEA_REF_NAME} + git push https://dss-agent:${{ secrets.DSS_GITEA_TOKEN }}@${GITEA_SERVER_URL}/${GITEA_REPOSITORY}.git HEAD:${GITEA_REF_NAME} else echo "No changes detected in project context. Nothing to commit." fi