From 7293906b3b0c49ae85b899de4ca6f640ca41a73f Mon Sep 17 00:00:00 2001 From: p-iknow Date: Tue, 12 May 2026 16:55:41 +0900 Subject: [PATCH] ci: skip CI for draft PRs --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ba397d..4edb50e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: push: branches: [main] pull_request: - types: [opened, synchronize, reopened] + types: [opened, synchronize, reopened, ready_for_review] concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -16,6 +16,7 @@ permissions: jobs: ci: + if: github.event_name != 'pull_request' || github.event.pull_request.draft == false runs-on: ubuntu-latest strategy: fail-fast: false