refactor: reuse core bootstrap state mapping for gate rewind #65
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: CI | |
| on: | |
| push: | |
| branches: [master] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-${{ github.sha }} | |
| cancel-in-progress: false | |
| jobs: | |
| check: | |
| uses: ./.github/workflows/_go-checks.yaml | |
| secrets: inherit | |
| gate: | |
| needs: [check] | |
| if: ${{ !failure() && !cancelled() }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 1 | |
| steps: | |
| - run: echo "Push checks passed" |