Add Draft to MergeableState enum (#2381)

This commit is contained in:
Aditi Takle
2022-05-26 14:49:12 -07:00
committed by GitHub
parent 727029c5d2
commit 316c343d67
+7 -1
View File
@@ -302,6 +302,12 @@ namespace Octokit
/// No conflicts, everything good. Merging is allowed.
/// </summary>
[Parameter(Value = "clean")]
Clean
Clean,
/// <summary>
/// Not ready for review. Merging is blocked.
/// </summary>
[Parameter(Value = "draft")]
Draft
}
}