From e0ccfd6a11c68f29752c44fe854323d5697e438b Mon Sep 17 00:00:00 2001 From: emil User Date: Wed, 12 Aug 2026 13:15:10 +0000 Subject: [PATCH] DEVX-154: fix: configure git remote with CI token for post-merge push --- .gitea/workflows/post-merge.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/post-merge.yml b/.gitea/workflows/post-merge.yml index 8dd596d..916ef1d 100644 --- a/.gitea/workflows/post-merge.yml +++ b/.gitea/workflows/post-merge.yml @@ -125,9 +125,12 @@ jobs: CI_GITEA_API_TOKEN: ${{ secrets.CI_GITEA_API_TOKEN }} run: make setup-image EXTRAS=release - name: Configure git + env: + CI_GITEA_API_TOKEN: ${{ secrets.CI_GITEA_API_TOKEN }} run: | git config user.name "devx-ci-bot" git config user.email "devx-ci-bot@oblachno.fyi" + git remote set-url origin "https://devx-ci-bot:${CI_GITEA_API_TOKEN}@git.oblachno.oblachno.fyi/oblachno-oss/devx.git" # --- release + publish (only if user-facing changes, not a release commit) --- - name: Run release id: release-tag