We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34ae37e commit e9485c4Copy full SHA for e9485c4
1 file changed
.circleci/config.yml
@@ -187,12 +187,19 @@ jobs:
187
working_directory: example/ios
188
command: |
189
pod install
190
+
191
+ - run:
192
+ name: Configure Git user
193
+ command: |
194
+ git config --global user.email "github.refactorer.service.account@intercom.io"
195
+ git config --global user.name "refactorer-bot"
196
197
- run:
198
name: Commit and push Podfile.lock
199
200
git add example/ios/Podfile.lock
201
git commit -m "chore: update Podfile.lock"
- 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
203
git push origin ${CIRCLE_BRANCH}
204
echo "Podfile.lock committed and pushed"
205
0 commit comments