-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
### 问题描述 | ||
|
||
- [ ] 我对翻译内容的改动不包含基于英文原版的扩展、删减或演绎 (如有,请移步至[主仓库](https://github.com/slidevjs/slidev)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Ported from https://github.com/vuejs-translations/docs-zh-cn/blob/main/.github/workflows/autosync.yml | ||
name: Auto Sync | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' # At 00:00. https://crontab.guru/ | ||
workflow_dispatch: # on button click | ||
|
||
jobs: | ||
sync: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: TobKed/github-forks-sync-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
upstream_repository: slidevjs/docs | ||
upstream_branch: main | ||
target_repository: slidevjs/docs-cn | ||
target_branch: upstream | ||
force: false | ||
tags: false |