Skip to content

将 getPoolName() 方法的返回类型从 string 修改为 ?string,以支持返回 null #21

将 getPoolName() 方法的返回类型从 string 修改为 ?string,以支持返回 null

将 getPoolName() 方法的返回类型从 string 修改为 ?string,以支持返回 null #21

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
git clone --mirror "$SOURCE_REPO" && cd `basename "$SOURCE_REPO"`
git push -f "$DESTINATION_REPO" "refs/heads/*:refs/heads/*" "refs/tags/*:refs/tags/*"