FOM表示を小数3桁に統一: bk_emit_resultは精度保持、Web表示側で丸め #220
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 |