[feat]: Support make_latest for create and update release endpoints

This commit is contained in:
Jasper Arildslund
2023-08-03 23:26:58 +02:00
committed by GitHub
parent bbcd33d96e
commit 729f261ecb
4 changed files with 71 additions and 1 deletions
@@ -0,0 +1,14 @@
using Octokit.Internal;
namespace Octokit
{
public enum MakeLatestQualifier
{
[Parameter(Value = "true")]
True = 1,
[Parameter(Value = "false")]
False = 2,
[Parameter(Value = "legacy")]
Legacy = 3,
}
}