Add languages to the status report for all jobs

This commit is contained in:
Henry Mercer 2024-02-26 19:03:28 +00:00
parent 905ae4af53
commit 28b564f8c6
30 changed files with 135 additions and 96 deletions

View file

@ -8,7 +8,7 @@ import {
} from "./actions-util";
import { getGitHubVersion } from "./api-client";
import { CommandInvocationError } from "./cli-errors";
import * as configUtils from "./config-utils";
import { Config, getConfig } from "./config-utils";
import { getActionsLogger } from "./logging";
import { runResolveBuildEnvironment } from "./resolve-environment";
import {
@ -31,12 +31,15 @@ async function run() {
const startedAt = new Date();
const logger = getActionsLogger();
let config: Config | undefined;
try {
await sendStatusReport(
await createStatusReportBase(
ACTION_NAME,
"starting",
startedAt,
undefined,
await checkDiskUsage(logger),
),
);
@ -45,7 +48,7 @@ async function run() {
checkGitHubVersionInRange(gitHubVersion, logger);
checkActionVersion(getActionVersion(), gitHubVersion);
const config = await configUtils.getConfig(getTemporaryDirectory(), logger);
config = await getConfig(getTemporaryDirectory(), logger);
if (config === undefined) {
throw new Error(
"Config file could not be found at expected location. Has the 'init' action been called?",
@ -81,6 +84,7 @@ async function run() {
ACTION_NAME,
getActionsStatus(error),
startedAt,
config,
await checkDiskUsage(),
error.message,
error.stack,
@ -96,6 +100,7 @@ async function run() {
ACTION_NAME,
"success",
startedAt,
config,
await checkDiskUsage(),
),
);