添加统一认证中心登录功能,并更新相关页面和逻辑 #138
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| jobs: | |
| sync-branches: | |
| runs-on: ubuntu-latest | |
| name: Syncing branches | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 12 | |
| - name: Opening pull request | |
| id: pull | |
| uses: tretuna/sync-branches@1.4.0 | |
| with: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| FROM_BRANCH: "dev" | |
| TO_BRANCH: "extern-contrib" |