mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
* Fixes check runs taking over 2017 years to complete * Make StartedAt and Status fields nullable, since they dont have to be provided on new or update requests
67 lines
2.6 KiB
C#
67 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Globalization;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class CheckRunUpdate
|
|
{
|
|
/// <summary>
|
|
/// Creates a new Check Run
|
|
/// </summary>
|
|
public CheckRunUpdate()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// The name of the check. For example, "code-coverage"
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// The URL of the integrator's site that has the full details of the check
|
|
/// </summary>
|
|
public string DetailsUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// A reference for the run on the integrator's system
|
|
/// </summary>
|
|
public string ExternalId { get; set; }
|
|
|
|
/// <summary>
|
|
/// The current status. Can be one of queued, in_progress, or completed. Default: queued
|
|
/// </summary>
|
|
public StringEnum<CheckStatus>? Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// The time that the check run began
|
|
/// </summary>
|
|
public DateTimeOffset? StartedAt { get; set; }
|
|
|
|
/// <summary>
|
|
/// Required if you provide completed_at or a status of completed. The final conclusion of the check. Can be one of success, failure, neutral, cancelled, timed_out, or action_required. When the conclusion is action_required, additional details should be provided on the site specified by details_url.
|
|
/// Note: Providing conclusion will automatically set the status parameter to completed
|
|
/// </summary>
|
|
public StringEnum<CheckConclusion>? Conclusion { get; set; }
|
|
|
|
/// <summary>
|
|
/// Required if you provide conclusion. The time the check completed
|
|
/// </summary>
|
|
public DateTimeOffset? CompletedAt { get; set; }
|
|
|
|
/// <summary>
|
|
/// Check runs can accept a variety of data in the output object, including a title and summary and can optionally provide descriptive details about the run
|
|
/// </summary>
|
|
public NewCheckRunOutput Output { get; set; }
|
|
|
|
/// <summary>
|
|
/// Possible further actions the integrator can perform, which a user may trigger. Each action includes a label, identifier and description. A maximum of three actions are accepted
|
|
/// </summary>
|
|
public IReadOnlyList<NewCheckRunAction> Actions { get; set; }
|
|
|
|
internal string DebuggerDisplay => string.Format(CultureInfo.InvariantCulture, "Name: {0}, Status: {1}, Conclusion: {2}", Name, Status, Conclusion);
|
|
}
|
|
}
|