From 55e4dbf03ee2f9e676acb47af9ce5cf85cb416c1 Mon Sep 17 00:00:00 2001 From: Milind Srivastava Date: Fri, 18 Sep 2026 13:49:20 -0400 Subject: [PATCH] ci: skip MVP CI on draft PRs Run when a draft is marked ready for review. Co-Authored-By: Claude Opus 5 --- .github/workflows/mvp-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/mvp-ci.yml b/.github/workflows/mvp-ci.yml index e6620b93..03ec24b2 100644 --- a/.github/workflows/mvp-ci.yml +++ b/.github/workflows/mvp-ci.yml @@ -2,6 +2,7 @@ name: MVP CI on: pull_request: + types: [opened, synchronize, reopened, ready_for_review] push: branches: [main] @@ -15,6 +16,7 @@ concurrency: jobs: backend: name: MVP backend + if: github.event_name != 'pull_request' || !github.event.pull_request.draft runs-on: ubuntu-latest timeout-minutes: 60 env: