华中科技大学网安学院:修正会议日期格式 #464
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
name: Sync To Gitee #名字 可自定义 | |
on: [ push, delete, create ] #触发条件 page_build表示Github Page部署完成后触发 | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: wearerequired/git-mirror-action@master #开源actions包 | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.GITEE_PRIVATE_KEY }} | |
with: | |
source-repo: "[email protected]:redleafnew/Chinese-STD-GB-T-7714-related-csl.git" # github仓库地址 | |
destination-repo: "[email protected]:redleafnew00/Chinese-STD-GB-T-7714-related-csl.git" # gitee仓库地址 | |