diff --git a/Octokit/Models/Request/NewCommitStatus.cs b/Octokit/Models/Request/NewCommitStatus.cs index 37fc0701..38b19401 100644 --- a/Octokit/Models/Request/NewCommitStatus.cs +++ b/Octokit/Models/Request/NewCommitStatus.cs @@ -24,11 +24,16 @@ namespace Octokit /// public string Description { get; set; } + /// + /// A string label to differentiate this status from the status of other systems. + /// + public string Context { get; set; } + internal string DebuggerDisplay { get { - return String.Format(CultureInfo.InvariantCulture, "Description: {0}", Description); + return String.Format(CultureInfo.InvariantCulture, "Description: {0}, Context: {1}", Description, Context); } } }