From 466b8fa658d79fb8f30fd02d08eebfe44ad5f20b Mon Sep 17 00:00:00 2001 From: mahee96 <47920326+mahee96@users.noreply.github.com> Date: Sun, 14 Jun 2026 05:39:34 +0530 Subject: [PATCH] fix CI - deploy account for apps-v2 --- scripts/ci/workflow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/workflow.py b/scripts/ci/workflow.py index 5000e203..bc4745df 100644 --- a/scripts/ci/workflow.py +++ b/scripts/ci/workflow.py @@ -286,8 +286,8 @@ def deploy(repo, source_json, release_tag, marketing_version): if not source_json_path.exists(): raise SystemExit(f"{source_json} missing inside repo") - run("git config user.name 'GitHub Actions'", check=False, cwd=repo) - run("git config user.email 'github-actions@github.com'", check=False, cwd=repo) + run("git config user.name 'github-actions[bot]'", check=False, cwd=repo) + run("git config user.email '41898282+github-actions[bot]@users.noreply.github.com'", check=False, cwd=repo) # ------------------------------------------------------ run("git fetch origin main", check=False, cwd=repo)