From 8a6d6548047e00e63262104501f258e0138049d8 Mon Sep 17 00:00:00 2001 From: qihai Date: Thu, 14 Aug 2025 19:09:06 +0800 Subject: [PATCH] ci: remove hard code git user in fe ci --- .github/workflows/frontend-ci.yaml | 8 -------- .github/workflows/frontend-tsc-ci.yaml | 8 -------- 2 files changed, 16 deletions(-) diff --git a/.github/workflows/frontend-ci.yaml b/.github/workflows/frontend-ci.yaml index 6ff3c5a8a..9bb2b443b 100644 --- a/.github/workflows/frontend-ci.yaml +++ b/.github/workflows/frontend-ci.yaml @@ -23,9 +23,6 @@ jobs: runs-on: ubuntu-latest env: NODE_VERSION: '18' - # should be ci trigger user - GIT_USER_NAME: 'mocayo' - GIT_USER_EMAIL: 'qihai@bytedance.com' BUILD_BRANCH: ${{ github.ref }} steps: - name: Checkout @@ -33,11 +30,6 @@ jobs: with: fetch-depth: 1 - - name: Config Git User - run: | - git config --local user.name ${{ env.GIT_USER_NAME }} - git config --local user.email ${{ env.GIT_USER_EMAIL }} - - name: Setup Node uses: actions/setup-node@v3 with: diff --git a/.github/workflows/frontend-tsc-ci.yaml b/.github/workflows/frontend-tsc-ci.yaml index ce1b86ccc..0015cec8e 100644 --- a/.github/workflows/frontend-tsc-ci.yaml +++ b/.github/workflows/frontend-tsc-ci.yaml @@ -23,20 +23,12 @@ jobs: runs-on: ubuntu-latest env: NODE_VERSION: '18' - # should be ci trigger user - GIT_USER_NAME: 'mocayo' - GIT_USER_EMAIL: 'qihai@bytedance.com' steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 1 - - name: Config Git User - run: | - git config --local user.name ${{ env.GIT_USER_NAME }} - git config --local user.email ${{ env.GIT_USER_EMAIL }} - - name: Setup Node uses: actions/setup-node@v3 with: