This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
Merge branch 'pr-562-fix-reflow' from 'ZihaoZhou:main' #15
This file contains 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: Sync to GitLab | |
# on: | |
# push: | |
# workflow_dispatch: | |
# jobs: | |
# sync: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout GitHub repository | |
# uses: actions/checkout@v2 | |
# with: | |
# fetch-depth: 0 | |
# - name: Push to GitLab | |
# env: | |
# GITLAB_TOKEN: ${{ secrets.GITLAB_ACCESS_TOKEN }} | |
# run: | | |
# git remote add gitlab https://oauth2:${GITLAB_TOKEN}@gitlab.com/zewebdev1337/devGPT-base.git | |
# git push gitlab HEAD:main |