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.
2 parents a741567 + d592634 commit a6e64c7Copy full SHA for a6e64c7
.github/workflows/mirror_gitee.yml
@@ -0,0 +1,19 @@
1
+name: Mirror to Gitee Repo
2
+
3
+on: [ push, delete, create ]
4
5
+# Ensures that only one mirror task will run at a time.
6
+concurrency:
7
+ group: git-mirror
8
9
+jobs:
10
+ git-mirror:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: wearerequired/git-mirror-action@v1
14
+ env:
15
+ ORGANIZATION: deepmodeling
16
+ SSH_PRIVATE_KEY: ${{ secrets.SYNC_GITEE_PRIVATE_KEY }}
17
+ with:
18
+ source-repo: "https://github.com/deepmodeling/dpdispatcher.git"
19
+ destination-repo: "git@gitee.com:deepmodeling/dpdispatcher.git"
0 commit comments