Showcase: greenfield BEAR baseline review #13
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: BEAR CI Governance | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| governance: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout demo | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '21' | |
| - name: Run BEAR governance (observe) | |
| run: ./.bear/ci/bear-gates.sh --mode observe | |
| - name: Upload BEAR CI artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: bear-ci-governance | |
| path: | | |
| build/bear/ci/bear-ci-report.json | |
| build/bear/ci/bear-ci-summary.md | |
| if-no-files-found: error |