Skip to content

Commit

Permalink
Fix CI merge formatting test. (#231)
Browse files Browse the repository at this point in the history
Fixes #230.

We set the user name and email and a commit message in case a merge commit needs to be created.
  • Loading branch information
jbarrick-mesosphere authored and alenkacz committed May 23, 2019
1 parent ef19537 commit 19e72de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ jobs:
keys:
- go-mod-v1-{{ checksum "go.sum" }}

- run: git merge origin/master
- run: |
git config user.name "Circle CI"
git config user.email "ci@mesosphere.com"
git merge -m "Merge Commit" origin/master
- run: make check-formatting
- save_cache:
key: go-mod-v1-{{ checksum "go.sum" }}
Expand Down

0 comments on commit 19e72de

Please sign in to comment.