Add some more comments

This commit is contained in:
Michael B. Gale 2025-06-24 13:59:46 +01:00
parent 9b9286a835
commit 86f47e8b74
No known key found for this signature in database
GPG key ID: FF5E2765BD00628F
3 changed files with 6 additions and 1 deletions

2
lib/upload-lib.js generated
View file

@ -419,12 +419,14 @@ function buildPayload(commitOid, ref, analysisKey, analysisName, zippedSarif, wo
}
return payloadObj;
}
// Represents the Code Scanning upload target.
exports.CodeScanningTarget = {
name: "code scanning",
target: SARIF_UPLOAD_TARGET.CODE_SCANNING_UPLOAD_TARGET,
sarifFilter: exports.defaultIsSarif,
sentinelPrefix: "CODEQL_UPLOAD_SARIF_",
};
// Represents the Code Quality upload target.
exports.CodeQualityTarget = {
name: "code quality",
target: SARIF_UPLOAD_TARGET.CODE_QUALITY_UPLOAD_TARGET,

File diff suppressed because one or more lines are too long