save progress
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
// <copyright file="ProcessingStatus.cs" company="StellaOps">
|
||||
// Copyright (c) StellaOps. Licensed under the AGPL-3.0-or-later.
|
||||
// </copyright>
|
||||
|
||||
namespace StellaOps.Integrations.Plugin.GitHubApp.CodeScanning;
|
||||
|
||||
/// <summary>
|
||||
/// Processing status for SARIF uploads.
|
||||
/// </summary>
|
||||
public enum ProcessingStatus
|
||||
{
|
||||
/// <summary>Upload is pending processing.</summary>
|
||||
Pending,
|
||||
|
||||
/// <summary>Processing completed successfully.</summary>
|
||||
Complete,
|
||||
|
||||
/// <summary>Processing failed.</summary>
|
||||
Failed
|
||||
}
|
||||
Reference in New Issue
Block a user