This repository was archived by the owner on Aug 3, 2026. It is now read-only.
fix(lib): thread proposal_id and chain_id into ShastaData for anchor skip #1091
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: Merge Gatekeeper | |
| on: | |
| pull_request: | |
| types: [synchronize, opened, reopened, edited, ready_for_review] | |
| merge_group: # Trigger in merge queue to pass the required status check | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| merge-gatekeeper: | |
| if: ${{ github.event_name == 'pull_request' && github.event.pull_request.draft == false }} | |
| runs-on: [arc-runner-set] | |
| permissions: | |
| checks: read | |
| statuses: read | |
| steps: | |
| - name: Run Merge Gatekeeper | |
| uses: upsidr/merge-gatekeeper@v1 | |
| with: | |
| timeout: 1800 | |
| interval: 60 | |
| token: ${{ secrets.GITHUB_TOKEN }} |