diff --git a/.github/workflows/pr_gate.yml b/.github/workflows/pr_gate.yml new file mode 100644 index 0000000..3f5ceeb --- /dev/null +++ b/.github/workflows/pr_gate.yml @@ -0,0 +1,21 @@ +name: PR Gate + +on: + pull_request: + workflow_dispatch: + +permissions: + contents: read + +concurrency: + group: pr-gate-${{ github.ref }} + cancel-in-progress: true + +jobs: + pr-gate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Basic repository sanity + run: | + test -f README.md