From aed70e335a59ef3f67fa6afdecc3aab10efc318e Mon Sep 17 00:00:00 2001 From: Maciej Date: Wed, 12 Apr 2023 01:46:06 +0200 Subject: [PATCH] Added Mannequin account type for migrated repos (#2694) * Added Mannequin account type for migrated repos Fix issue #2687 * Update AccountType.cs * Added information about mannequin account type --- Octokit/Models/Response/AccountType.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Octokit/Models/Response/AccountType.cs b/Octokit/Models/Response/AccountType.cs index 98f8695dab..53978104a5 100644 --- a/Octokit/Models/Response/AccountType.cs +++ b/Octokit/Models/Response/AccountType.cs @@ -20,6 +20,13 @@ public enum AccountType /// Bot account /// [Parameter(Value = "Bot")] - Bot + Bot, + + /// + /// Mannequin account - all user activity in the migrated repository (except Git commits) + /// is attributed to placeholder identities called mannequins. + /// + [Parameter(Value = "Mannequin")] + Mannequin } }