From 512c0ca5edc34f4eb932d5dd59cc86f842a8817c Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Mon, 17 Nov 2025 16:04:10 -0500 Subject: [PATCH] Open PRs as drafts for sync-python-releases (#16763) ## Summary This is a little goofy, but it saves us a click: when automation PRs are opened as drafts, they don't need to be cycled through closed/opened to force the CI to run. Instead, once undrafted the CI runs. See #16505 for an example of the closed/opened cycle hack this avoids. ## Test Plan No functional changes besides CI automation. Signed-off-by: William Woodruff --- .github/workflows/sync-python-releases.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sync-python-releases.yml b/.github/workflows/sync-python-releases.yml index 229fae20e..50ec4fe0c 100644 --- a/.github/workflows/sync-python-releases.yml +++ b/.github/workflows/sync-python-releases.yml @@ -49,3 +49,4 @@ jobs: title: "Sync latest Python releases" body: "Automated update for Python releases." base: "main" + draft: true