Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit dc09b94

Browse files
committed
ci: fix PR rebasing
1 parent 27a3f02 commit dc09b94

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.circleci/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ commands:
5858
description: Checkout and verify clean merge with master
5959
steps:
6060
- checkout
61+
- run:
62+
name: Configure Git for rebase
63+
command: |
64+
if [ -n "$CIRCLE_PR_NUMBER" ]; then
65+
# User is required for rebase.
66+
git config user.name "angular-ci"
67+
git config user.email "angular-ci"
68+
fi
6169
- build-tools/merge-with-parent:
6270
parent: master
6371

0 commit comments

Comments
 (0)