save progress

This commit is contained in:
master
2026-01-09 18:27:36 +02:00
parent e608752924
commit a21d3dbc1f
361 changed files with 63068 additions and 1192 deletions

View File

@@ -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
}