-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 changed file
with
30 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,30 @@ | ||
name: Ascend Gitee repos mirror 2 hours job | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/**' | ||
# Runs at every pull requests submitted in master branch | ||
branches: [ master ] | ||
schedule: | ||
# Runs at 01:00 UTC (9:00 AM Beijing) every day | ||
- cron: '0 */2 * * *' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Mirror the gitee/ascend org repos to github/ascend. | ||
uses: Yikun/[email protected] | ||
with: | ||
src: gitee/ascend | ||
dst: github/Ascend | ||
dst_key: ${{ secrets.SYNC_ASCEND_PRIVATE_KEY }} | ||
dst_token: ${{ secrets.SYNC_ASCEND_TOKEN }} | ||
account_type: org | ||
clone_style: ssh | ||
force_update: true | ||
debug: true | ||
static_list: "pytorch" |