Skip to content

Commit 76b47b8

Browse files
committed
Add .circleci/config.yml
1 parent 5f9a25d commit 76b47b8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.circleci/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: cimg/base:stable
7+
steps:
8+
- checkout
9+
- run: git config user.name "vue-bot"
10+
- run: git config user.email "[email protected]"
11+
- run: git remote remove origin
12+
- run: git remote add origin https://[email protected]/vuejs/vue-cli-wiki.git > /dev/null 2>&1
13+
- run: git remote add upstream https://[email protected]/vuejs/vue-cli.wiki.git > /dev/null 2>&1
14+
- run: git fetch origin
15+
- run: git fetch upstream
16+
- run: git merge upstream/master --no-edit
17+
- run: git push origin HEAD:master > /dev/null 2>&1
18+
- run: git push upstream HEAD:master > /dev/null 2>&1
19+

0 commit comments

Comments
 (0)