[FEAT] Update permissions based on GitHub documentation (#2424)

This commit is contained in:
samvdd-247
2022-07-11 18:00:00 +02:00
committed by GitHub
parent 8e6bcd1e49
commit f6e541d616
+14 -2
View File
@@ -14,7 +14,19 @@ namespace Octokit
/// </summary>
[Parameter(Value = "admin")]
Admin,
/// <summary>
/// team members can manage the repository without access to sensitive or destructive actions. Recommended for project managers. Only applies to repositories owned by organizations.
/// </summary>
[Parameter(Value = "maintain")]
Maintain,
/// <summary>
/// team members can proactively manage issues and pull requests without write access. Recommended for contributors who triage a repository. Only applies to repositories owned by organizations.
/// </summary>
[Parameter(Value = "triage")]
Triage,
/// <summary>
/// team members can pull and push, but not administer these repositories
/// </summary>
@@ -27,4 +39,4 @@ namespace Octokit
[Parameter(Value = "pull")]
Pull
}
}
}