mirror of
https://github.com/github/codeql-action.git
synced 2026-04-27 17:39:15 +00:00
Include "Result" in name
This commit is contained in:
Generated
+4
-4
@@ -92594,7 +92594,7 @@ async function run(startedAt) {
|
||||
getTemporaryDirectory(),
|
||||
logger
|
||||
);
|
||||
const repositoryProperties = await loadRepositoryProperties(
|
||||
const repositoryPropertiesResult = await loadRepositoryProperties(
|
||||
repositoryNwo,
|
||||
gitHubVersion,
|
||||
features,
|
||||
@@ -92688,10 +92688,10 @@ async function run(startedAt) {
|
||||
githubVersion: gitHubVersion,
|
||||
apiDetails,
|
||||
features,
|
||||
repositoryProperties: repositoryProperties.orElse({}),
|
||||
repositoryProperties: repositoryPropertiesResult.orElse({}),
|
||||
logger
|
||||
});
|
||||
if (repositoryProperties.isFailure()) {
|
||||
if (repositoryPropertiesResult.isFailure()) {
|
||||
addDiagnostic(
|
||||
config,
|
||||
// Arbitrarily choose the first language. We could also choose all languages, but that
|
||||
@@ -92701,7 +92701,7 @@ async function run(startedAt) {
|
||||
"codeql-action/repository-properties-load-failure",
|
||||
"Failed to load repository properties",
|
||||
{
|
||||
error: getErrorMessage(repositoryProperties.value)
|
||||
error: getErrorMessage(repositoryPropertiesResult.value)
|
||||
}
|
||||
)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user