This commit is contained in:
839 2020-06-14 15:48:25 +09:00
Родитель 7597a5261f
Коммит 94cb4a2a0a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B320DBCCE13B7629
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -180,10 +180,11 @@ export class Client {
repo,
run_id: parseInt(runId, 10),
});
const job = resp?.data.jobs.find(
const currentJob = resp?.data.jobs.find(
job => job.name === process.env.GITHUB_JOB,
);
let time = new Date().getTime() - new Date(job?.started_at ?? '').getTime();
let time =
new Date().getTime() - new Date(currentJob?.started_at ?? '').getTime();
const h = Math.floor(time / (1000 * 60 * 60));
time -= h * 1000 * 60 * 60;
const m = Math.floor(time / (1000 * 60));