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 a0aab3cd checking if deployment authorship works
a0aab3cd is described below
commit a0aab3cdb250f936495d417f50c86a470a1b5d36
Author: harish876 <[email protected]>
AuthorDate: Mon Jan 26 05:03:53 2026 +0000
checking if deployment authorship works
---
.github/workflows/deploy-ecosystem.yml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/.github/workflows/deploy-ecosystem.yml
b/.github/workflows/deploy-ecosystem.yml
index ba96a90d..119e1506 100644
--- a/.github/workflows/deploy-ecosystem.yml
+++ b/.github/workflows/deploy-ecosystem.yml
@@ -158,6 +158,14 @@ jobs:
vercel pull --yes --environment=production --token=$VERCEL_TOKEN ||
echo "Could not pull Vercel config, continuing..."
+ - name: Create deployment commit with correct author
+ run: |
+ # Configure git user
+ git config user.name "github-actions[bot]"
+ git config user.email "[email protected]"
+ # Create an empty commit with correct author for Vercel to see
+ git commit --allow-empty -m "ci: authorize deploy for ${{
matrix.project.name }}" || echo "Skipping commit creation"
+
- name: Deploy to Vercel
working-directory: ${{ matrix.project.path }}
env: