fix: bk_emit_result内部で科学表記を小数に正規化、run.sh側の個別丸め処理を削除 #217
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 all branches to GitLab | |
| on: | |
| push: | |
| branches: | |
| - '**' # 全ブランチを対象にする | |
| workflow_dispatch: | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 # 全ブランチとタグを取得 | |
| - name: Push all branches and tags to GitLab | |
| env: | |
| GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} | |
| GITLAB_REPO: ${{ secrets.GITLAB_REPO }} | |
| run: | | |
| git config user.name "github-bot" | |
| git config user.email "bot@example.com" | |
| git remote add gitlab https://oauth2:${GITLAB_TOKEN}@${GITLAB_REPO} | |
| # 全ブランチ・タグを強制同期 | |
| git push gitlab --all --force | |
| git push gitlab --tags --force |