From d39a5ec3dcdf65ba1e2dfa12692fc88c02fb3da4 Mon Sep 17 00:00:00 2001 From: Geoff Lamrock Date: Mon, 1 Sep 2025 16:58:04 +1000 Subject: [PATCH] Fix default for creating PR as draft --- src/Stack/Commands/PullRequests/CreatePullRequestsCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Stack/Commands/PullRequests/CreatePullRequestsCommand.cs b/src/Stack/Commands/PullRequests/CreatePullRequestsCommand.cs index 2e0f30ad..1e4dd95a 100644 --- a/src/Stack/Commands/PullRequests/CreatePullRequestsCommand.cs +++ b/src/Stack/Commands/PullRequests/CreatePullRequestsCommand.cs @@ -263,7 +263,7 @@ private static async Task> GetPullRequestInformatio {StackConstants.StackMarkerEnd}"); - var draft = inputProvider.Confirm(Questions.CreatePullRequestAsDraft, cancellationToken).Result; + var draft = await inputProvider.Confirm(Questions.CreatePullRequestAsDraft, cancellationToken, false); pullRequestActions.Add(new PullRequestInformation( action.Branch,