Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git-repo-sync.yml « workflows « .github - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c5df569ccf6aaa397367fd73ac70cf6aeebc8c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: sync

on: 
  - push
  - delete

jobs:
  sync:
    runs-on: ubuntu-latest
    name: Git Repo Sync
    steps:
    - uses: actions/checkout@v2
      with:
        fetch-depth: 0
    - uses: wangchucheng/git-repo-sync@main
      with:
        target-url: 'https://gitee.com/wangchucheng/hugo-eureka.git'
        target-username: 'wangchucheng'
        target-token: ${{ secrets.GITEE_ACCESS_TOKEN }}