Merge lp:~jelmer/brz/github-draft into lp:brz/3.1

Proposed by Jelmer Vernooij
Status: Merged
Approved by: Jelmer Vernooij
Approved revision: no longer in the source branch.
Merge reported by: The Breezy Bot
Merged at revision: not available
Proposed branch: lp:~jelmer/brz/github-draft
Merge into: lp:brz/3.1
Diff against target: 12 lines (+1/-1)
1 file modified
breezy/plugins/propose/github.py (+1/-1)
To merge this branch: bzr merge lp:~jelmer/brz/github-draft
Reviewer Review Type Date Requested Status
Jelmer Vernooij Approve
Review via email: mp+380384@code.launchpad.net

Commit message

Don't mark all GitHub pull requests as draft.

Description of the change

Don't mark all GitHub pull requests as draft.

To post a comment you must log in.
Revision history for this message
Jelmer Vernooij (jelmer) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'breezy/plugins/propose/github.py'
2--- breezy/plugins/propose/github.py 2020-02-19 04:56:22 +0000
3+++ breezy/plugins/propose/github.py 2020-03-07 10:32:14 +0000
4@@ -587,7 +587,7 @@
5 head="%s:%s" % (self.source_owner, self.source_branch_name),
6 base=self.target_branch_name,
7 labels=labels, assignee=assignees,
8- draft=(not work_in_progress))
9+ draft=work_in_progress)
10 except ValidationFailed:
11 raise MergeProposalExists(self.source_branch.user_url)
12 return GitHubMergeProposal(self.gh, pull_request)

Subscribers

People subscribed via source and target branches