From 18b6149d1342f0b641d59a1f5b0d3465a6d2be60 Mon Sep 17 00:00:00 2001 From: Ryan Gribble Date: Sun, 15 Jan 2017 22:24:49 +1000 Subject: [PATCH] Add "Bot" AccountType, was causing a deserialization exception when running the integration test "SearchForExcludedLanguage" --- Octokit/Models/Response/AccountType.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Octokit/Models/Response/AccountType.cs b/Octokit/Models/Response/AccountType.cs index b4797ba9c0..dddc366dde 100644 --- a/Octokit/Models/Response/AccountType.cs +++ b/Octokit/Models/Response/AccountType.cs @@ -10,6 +10,11 @@ public enum AccountType /// /// Organization account /// - Organization + Organization, + + /// + /// Bot account + /// + Bot } }