From 7484a79b7a6f060008c751ddd3bde9fd5113b30f Mon Sep 17 00:00:00 2001 From: Seungpyo1007 Date: Tue, 2 Jun 2026 09:54:58 +0900 Subject: [PATCH] chore(ci): attribute bot commits to the TechEngineBot account MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Swap the placeholder techengine-bot identity for the real TechEngineBot GitHub account, using its ID-based noreply email (289859915+TechEngineBot@users.noreply.github.com) so commits render the account's avatar and link to its profile — without exposing a real address in a public repo. --- .github/workflows/bump-techapi.yml | 4 ++-- .github/workflows/weekly-ingest.yml | 4 ++-- .github/workflows/weekly-refresh.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/bump-techapi.yml b/.github/workflows/bump-techapi.yml index 60e74a2..9ef85f5 100644 --- a/.github/workflows/bump-techapi.yml +++ b/.github/workflows/bump-techapi.yml @@ -52,7 +52,7 @@ jobs: exit 0 fi git update-index --cacheinfo "160000,${SHA},TechAPI" - git config user.name "techengine-bot" - git config user.email "techengine-bot@users.noreply.github.com" + git config user.name "TechEngineBot" + git config user.email "289859915+TechEngineBot@users.noreply.github.com" git commit -m "chore: bump TechAPI submodule to ${SHA:0:7}" git push origin main diff --git a/.github/workflows/weekly-ingest.yml b/.github/workflows/weekly-ingest.yml index bb63928..86db16a 100644 --- a/.github/workflows/weekly-ingest.yml +++ b/.github/workflows/weekly-ingest.yml @@ -121,8 +121,8 @@ jobs: fi cd TechAPI BRANCH="ingest/${CATEGORY}-$(date -u +%Y%m%d-%H%M%S)" - git config user.name "techengine-bot" - git config user.email "techengine-bot@users.noreply.github.com" + git config user.name "TechEngineBot" + git config user.email "289859915+TechEngineBot@users.noreply.github.com" git checkout -b "$BRANCH" git add data/ git commit -m "feat(data/${CATEGORY}): weekly ingest" diff --git a/.github/workflows/weekly-refresh.yml b/.github/workflows/weekly-refresh.yml index 36e7651..cd53f64 100644 --- a/.github/workflows/weekly-refresh.yml +++ b/.github/workflows/weekly-refresh.yml @@ -162,6 +162,6 @@ jobs: commit-message: "chore(data): weekly refresh ${{ steps.meta.outputs.date }}" title: "chore(data): weekly refresh ${{ steps.meta.outputs.date }}" body-path: pr-body.md - committer: techengine-bot - author: techengine-bot + committer: TechEngineBot <289859915+TechEngineBot@users.noreply.github.com> + author: TechEngineBot <289859915+TechEngineBot@users.noreply.github.com> delete-branch: true