Skip to content

Commit e9485c4

Browse files
none: adding username email for refactorer
1 parent 34ae37e commit e9485c4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.circleci/config.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,19 @@ jobs:
187187
working_directory: example/ios
188188
command: |
189189
pod install
190+
191+
- run:
192+
name: Configure Git user
193+
command: |
194+
git config --global user.email "[email protected]"
195+
git config --global user.name "refactorer-bot"
196+
190197
- run:
191198
name: Commit and push Podfile.lock
192199
command: |
193200
git add example/ios/Podfile.lock
194201
git commit -m "chore: update Podfile.lock"
195-
git remote set-url origin https://refactorer-bot:${GH_RW_TOKEN}@github.com/intercom/intercom-react-native.git
202+
git remote set-url origin https://${GH_RW_TOKEN}@github.com/intercom/intercom-react-native.git
196203
git push origin ${CIRCLE_BRANCH}
197204
echo "Podfile.lock committed and pushed"
198205

0 commit comments

Comments
 (0)