setup sync

Evan You 2019-01-25 11:22:17 -05:00
parent de2bd46347
commit cb5cd206bf
3 changed files with 19 additions and 2 deletions

17
.circleci/config.yml Normal file

@ -0,0 +1,17 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:8
steps:
- run: git config user.name "vue-bot"
- run: git config user.email "bot@vuejs.org"
- run: git remote remove origin
- run: git remote add origin https://$GITHUB_API_KEY@github.com/vuejs/wiki.git > /dev/null 2>&1
- run: git remote add upstream https://$GITHUB_API_KEY@github.com/vuejs/vue.wiki.git > /dev/null 2>&1
- run: git fetch origin
- run: git fetch uptream
- run: git merge upstream/master --no-edit
- run: git push origin HEAD:master > /dev/null 2>&1
- run: git push upstream HEAD:master > /dev/null 2>&1

@ -1 +1 @@
> Nothing to see yet.
This wiki documents the operation and contribution guidelines of the Vue.js project.

@ -1 +1 @@
This wiki serves as a knowledge base for working on Vue internals. For documentation, please visit [vuejs.org](https://vuejs.org).
For edits please submit a PR [here](https://github.com/vuejs/wiki/pulls). For documentation, please visit [vuejs.org](https://vuejs.org).