summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDylan Baker <dylan.c.baker@intel.com>2022-03-17 20:02:34 -0700
committerDylan Baker <dylan.c.baker@intel.com>2022-03-23 09:10:04 -0700
commit93f5f9b75fd8d7f21c3d29a9f1a1ad1f7b6c006c (patch)
treea634d3f0975c8fca0afacc79b1f3c3c752c44c75 /bin
parent3348844bc45b4204619f77949d09a4ecebc402f3 (diff)
pick/core: Add a MANUAL_RESOLUTION resolution
This status is given by the auto-picker when it cannot successfully auto-pick
Diffstat (limited to 'bin')
-rw-r--r--bin/pick/core.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/pick/core.py b/bin/pick/core.py
index fe5af9d8db2..98bd0bd9dcf 100644
--- a/bin/pick/core.py
+++ b/bin/pick/core.py
@@ -81,6 +81,7 @@ class Resolution(enum.Enum):
DENOMINATED = 2
BACKPORTED = 3
NOTNEEDED = 4
+ MANUAL_RESOLUTION = 5
async def commit_state(*, amend: bool = False, message: str = 'Update') -> bool: