applicative bootloader: load aggregator program hash func hint #282
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: Main-CI-PR-Flow | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - edited | |
| # On PR events, cancel existing CI runs on this same PR for this workflow. | |
| # Also, create different concurrency groups for different pushed commits, on push events. | |
| concurrency: | |
| group: > | |
| ${{ github.workflow }}- | |
| ${{ github.ref }}- | |
| ${{ github.event_name == 'pull_request' && 'PR' || github.sha }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| merge-gatekeeper: | |
| runs-on: namespace-profile-starkware-libs-proving-utils-medium-ubuntu-24-04-amd64 | |
| # Restrict permissions of the GITHUB_TOKEN. | |
| # Docs: https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs | |
| permissions: | |
| checks: read | |
| statuses: read | |
| steps: | |
| - name: Run Merge Gatekeeper on pull request | |
| if: github.event_name == 'pull_request' | |
| uses: upsidr/merge-gatekeeper@v1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| timeout: 3600 | |
| interval: 30 | |
| ignored: code-review/reviewable |