Skip to content

Commit

Permalink
Added Mannequin account type for migrated repos (#2694)
Browse files Browse the repository at this point in the history
* Added Mannequin account type for migrated repos

Fix issue #2687

* Update AccountType.cs

* Added information about mannequin account type
  • Loading branch information
MGbiorczyk95 committed Apr 11, 2023
1 parent f10f5f3 commit aed70e3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Octokit/Models/Response/AccountType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ public enum AccountType
/// Bot account
/// </summary>
[Parameter(Value = "Bot")]
Bot
Bot,

/// <summary>
/// Mannequin account - all user activity in the migrated repository (except Git commits)
/// is attributed to placeholder identities called mannequins.
/// </summary>
[Parameter(Value = "Mannequin")]
Mannequin
}
}

0 comments on commit aed70e3

Please sign in to comment.