From da06c52195a749f1da321e18ffd6d47f582bdb23 Mon Sep 17 00:00:00 2001 From: "dev.takaya.inoue" Date: Wed, 25 Feb 2026 06:38:01 +0900 Subject: [PATCH] =?UTF-8?q?ci:=20PR=E5=BF=85=E9=A0=88=E3=83=81=E3=82=A7?= =?UTF-8?q?=E3=83=83=E3=82=AF=20pr-gate=20=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pr_gate.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/pr_gate.yml 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