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 25411ef0 check if author resert works
25411ef0 is described below
commit 25411ef0eff3a8f3bf990347e84abf07e71b42e2
Author: harish876 <[email protected]>
AuthorDate: Mon Jan 26 04:42:22 2026 +0000
check if author resert works
---
.github/workflows/deploy-ecosystem.yml | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/deploy-ecosystem.yml
b/.github/workflows/deploy-ecosystem.yml
index 1205f2f0..84ffead0 100644
--- a/.github/workflows/deploy-ecosystem.yml
+++ b/.github/workflows/deploy-ecosystem.yml
@@ -152,16 +152,13 @@ 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 }}
+ - name: Amend commit author for Vercel
run: |
- # Configure git user
+ # Configure git user at repo root
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"
+ git commit --amend --reset-author --no-edit
+ git push origin HEAD:${{ github.ref }} --force
- name: Deploy to Vercel
working-directory: ${{ matrix.project.path }}