We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b0f033 commit e2dfa09Copy full SHA for e2dfa09
.github/workflows/sync.yaml
@@ -0,0 +1,33 @@
1
+name: todo
2
+
3
+on:
4
+ schedule:
5
+ - cron: 0 0 * * *
6
7
+jobs:
8
+ cleanup:
9
+ runs-on: ubuntu-latest
10
11
+ strategy:
12
+ matrix:
13
+ node-version: [12.x]
14
15
+ steps:
16
+ - uses: actions/checkout@v1
17
+ with:
18
+ ref: master
19
+ - name: Use Node.js ${{ matrix.node-version }}
20
+ uses: actions/setup-node@v1
21
+ if: steps.cache.outputs.cache-hit != 'true'
22
23
+ node-version: ${{ matrix.node-version }}
24
+ - name: Add upstream
25
+ run: |
26
+ git add remote upstream [email protected]:vuejs/docs-next.git
27
+ - name: Pull upstream changes
28
29
30
+ - name: Sync it
31
32
+ git push origin master
33
0 commit comments