From 8c720affeb8545cf9c4de371d4ec10530d4fe01c Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Sat, 14 Mar 2026 11:07:56 -0400 Subject: [PATCH] ci/github-script/merge: don't consider draft PRs eligible for merge bot Fixes #499676 --- ci/github-script/merge.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/github-script/merge.js b/ci/github-script/merge.js index 964201bc3d9e..bf6b25b52759 100644 --- a/ci/github-script/merge.js +++ b/ci/github-script/merge.js @@ -56,6 +56,7 @@ function runChecklist({ 'Opened by [@r-ryantm](https://nix-community.github.io/nixpkgs-update/r-ryantm/).': pull_request.user.login === 'r-ryantm', }, + 'PR is not a draft': !pull_request.draft, } if (user) {