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 70eec5a5 fix for author conflict outside vercel org
70eec5a5 is described below
commit 70eec5a5a7ccfd17fe7abada6d53b9742a6da436
Author: harish876 <[email protected]>
AuthorDate: Mon Jan 26 04:14:18 2026 +0000
fix for author conflict outside vercel org
---
.github/workflows/deploy-ecosystem.yml | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/deploy-ecosystem.yml
b/.github/workflows/deploy-ecosystem.yml
index 6ec09cab..9afdce0c 100644
--- a/.github/workflows/deploy-ecosystem.yml
+++ b/.github/workflows/deploy-ecosystem.yml
@@ -152,11 +152,19 @@ jobs:
vercel pull --yes --environment=production --token=$VERCEL_TOKEN ||
echo "Could not pull Vercel config, continuing..."
+ - 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: Deploy to Vercel
working-directory: ${{ matrix.project.path }}
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
- run: vercel deploy --prod --yes --token=$VERCEL_TOKEN
+ VERCEL_ORG_ID: ${{ matrix.project.vercel_org_id ||
secrets.VERCEL_ORG_ID }}
+ run: |
+ vercel deploy --prod --yes --token=$VERCEL_TOKEN
- name: Deployment Summary
if: always()