From 47a98cb396a74a285b1aaa41059f2d06daa89756 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Wed, 13 May 2026 14:53:03 +0700 Subject: [PATCH] fix(ci): use canonical github-actions[bot] noreply email in mirror workflow The previous 'actions@github.com' was a generic placeholder. Using the canonical noreply form (id 41898282) ensures any commit attribution from this workflow links to the github-actions bot profile. --- .github/workflows/mirror.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index 1ab88e1..08f4a02 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -30,8 +30,8 @@ jobs: - name: Mirror to GitLab run: | - git config --global user.name "GitHub Actions" - git config --global user.email "actions@github.com" + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" # Add GitLab remote git remote add gitlab git@gitlab.com:miti99/miti99.gitlab.io.git