补充第 400 ~ 499 题的题目解析(增加 14 道题) #678
This file contains hidden or 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: Mirror to Gitee Repo | |
| on: [ push ] | |
| # Ensures that only one mirror task will run at a time. | |
| concurrency: | |
| group: git-mirror | |
| jobs: | |
| git-mirror: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: wearerequired/git-mirror-action@v1 | |
| env: | |
| SSH_PRIVATE_KEY: ${{ secrets.SYNC_GITEE_PRI_KEY }} | |
| with: | |
| source-repo: "git@github.com:itcharge/AlgoNote.git" | |
| destination-repo: "git@gitee.com:itcharge/AlgoNote.git" |