修复获取getinfo时候,userName 事件结果为 nickName 问题 #227
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: 'GitHub Actions Mirror' | |
on: [push, delete] | |
jobs: | |
mirror_to_gitee: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v1 | |
- name: 'Mirror to gitee' | |
uses: pixta-dev/repository-mirroring-action@v1 | |
with: | |
target_repo_url: | |
[email protected]:go-admin-team/go-admin.git | |
ssh_private_key: | |
${{ secrets.GITEE_KEY }} | |
mirror_to_gitlab: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v1 | |
- name: 'Mirror to gitlab' | |
uses: pixta-dev/repository-mirroring-action@v1 | |
with: | |
target_repo_url: | |
[email protected]:go-admin-team/go-admin.git | |
ssh_private_key: | |
${{ secrets.GITLAB_KEY }} |