This is an automated email from the ASF dual-hosted git repository.
harishgokul01 pushed a commit to branch development
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git
The following commit(s) were added to refs/heads/development by this push:
new 4359dde2 checking if reset-author works
4359dde2 is described below
commit 4359dde28c84c76a317ac2b9f1f8a6608818df8f
Author: harish876 <[email protected]>
AuthorDate: Mon Jan 26 04:28:13 2026 +0000
checking if reset-author works
---
.github/workflows/deploy-ecosystem.yml | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/deploy-ecosystem.yml
b/.github/workflows/deploy-ecosystem.yml
index ba96a90d..1205f2f0 100644
--- a/.github/workflows/deploy-ecosystem.yml
+++ b/.github/workflows/deploy-ecosystem.yml
@@ -137,12 +137,6 @@ jobs:
- name: Install Vercel CLI
run: npm install --global vercel@latest
- - name: Configure Git for Vercel
- working-directory: ${{ matrix.project.path }}
- run: |
- git config user.name "github-actions[bot]"
- git config user.email "[email protected]"
-
- name: Pull Vercel Environment Information
working-directory: ${{ matrix.project.path }}
env:
@@ -158,6 +152,17 @@ jobs:
vercel pull --yes --environment=production --token=$VERCEL_TOKEN ||
echo "Could not pull Vercel config, continuing..."
+ - name: Set deploy commit author
+ working-directory: ${{ matrix.project.path }}
+ run: |
+ # Configure git user
+ git config user.name "github-actions[bot]"
+ git config user.email "[email protected]"
+
+ # Create an empty commit with the correct author to override
previous commit author
+ # This helps Vercel identify the correct author for team access
+ git commit --allow-empty -m "chore: update commit author for Vercel
deployment" --reset-author || echo "No changes to commit"
+
- name: Deploy to Vercel
working-directory: ${{ matrix.project.path }}
env: