Skip to content

Run PR Gate as entrypoint #371

Run PR Gate as entrypoint

Run PR Gate as entrypoint #371

Workflow file for this run

name: PR Permission Gate
on:
pull_request:
branches: [main]
types: [opened, reopened, synchronize]
permissions:
contents: read
pull-requests: read
jobs:
gatekeeper:
runs-on: ubuntu-latest
concurrency:
group: pr-gate-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- name: Checkout base branch (safe)
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.base.sha }}
fetch-depth: 1
- name: Run permission gate (from base)
uses: ./.github/actions/pr-permission-gate
pr-vllm:
needs: [gatekeeper]
if: success()
uses: ./.github/workflows/pr-vllm.yml
permissions:
contents: read
pr-sglang:
needs: [gatekeeper]
if: success()
uses: ./.github/workflows/pr-sglang.yml
permissions:
contents: read