123456789101112131415161718192021 |
- name: Sync Remote Repository
- on:
- push:
- branches:
- - master
- - jdk_17
- jobs:
- sync-repo:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - uses: yesolutions/mirror-action@master
- with:
- REMOTE: 'https://atomgit.com/log4j/CGTM.git'
- GIT_USERNAME: lltx
- GIT_PASSWORD: ${{ secrets.GIT_GOGS_PASSWORD }}
|