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.
1 parent 908924d commit 142e332Copy full SHA for 142e332
.github/workflows/sync.yml
@@ -0,0 +1,22 @@
1
+name: sync
2
+
3
+# Controls when the workflow will run
4
+on:
5
+ # Triggers the workflow on push or pull request events but only for the main branch
6
+ release:
7
+ branches: [ main ]
8
9
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
10
+jobs:
11
+ sync:
12
+ runs-on: ubuntu-latest
13
+ name: Git Repo Sync
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ with:
17
+ fetch-depth: 0
18
+ - uses: devtron-labs/[email protected]
19
20
+ target-url: ${{ secrets.TARGET_URL }}
21
+ target-username: ${{ secrets.TARGET_USER_NAME }}
22
+ target-token: ${{ secrets.GITEE_ACCESS_TOKEN }}
0 commit comments