This is an automated email from the ASF dual-hosted git repository.
davidarthur pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/kafka-merge-queue-sandbox.git
The following commit(s) were added to refs/heads/main by this push:
new 8baaa9c configure the github actions account
8baaa9c is described below
commit 8baaa9c2631b2cdd86ea511d43469e412971bbe7
Author: David Arthur <[email protected]>
AuthorDate: Tue Mar 18 15:08:17 2025 -0400
configure the github actions account
---
.github/workflows/merge.yml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml
index 3912bdd..262a6dc 100644
--- a/.github/workflows/merge.yml
+++ b/.github/workflows/merge.yml
@@ -38,8 +38,11 @@ jobs:
echo "Status"
git status
echo "Log"
- git log $BASE_SHA..HEAD
+ git log HEAD..$BASE_SHA
+ git log --oneline | head -n 100
echo "Amend"
+ git config user.name 'github-actions[bot]'
+ git config user.email
'41898282+github-actions[bot]@users.noreply.github.com'
git commit --amend --trailer "Reviewer: David Arthur <mumrah@gmail>"
- name: Setup Python
uses: ./.github/actions/setup-python