Skip to content

添加 FUNDING.yml 文件以指定赞赏用户和自定义捐赠链接 #4

添加 FUNDING.yml 文件以指定赞赏用户和自定义捐赠链接

添加 FUNDING.yml 文件以指定赞赏用户和自定义捐赠链接 #4

Workflow file for this run

name: Mirror to CNB Repo
on: [ push, delete, create ]
jobs:
git-mirror:
if: github.repository == 'friendsofhyperf/components'
runs-on: ubuntu-latest
steps:
- name: Push Mirror
if: github.repository_owner == 'friendsofhyperf'
env:
SOURCE_REPO: 'https://github.com/friendsofhyperf/components.git'
DESTINATION_REPO: 'https://cnb:${{ secrets.CNB_TOKEN }}@cnb.cool/friendsofhyperf/components.git'
run: |
git clone --mirror "$SOURCE_REPO" && cd `basename "$SOURCE_REPO"`
git remote set-url --push origin "$DESTINATION_REPO"
git fetch -p origin
git for-each-ref --format 'delete %(refname)' refs/pull | git update-ref --stdin
git push --mirror