From b3b64214f42c04363db4bd455e5c9c5a9a975e13 Mon Sep 17 00:00:00 2001 From: Crevil Date: Tue, 12 Jul 2022 21:14:56 +0200 Subject: [PATCH] Update API report Signed-off-by: Crevil --- plugins/github-actions/api-report.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/github-actions/api-report.md b/plugins/github-actions/api-report.md index 08761bad56..4e5c7f30e9 100644 --- a/plugins/github-actions/api-report.md +++ b/plugins/github-actions/api-report.md @@ -214,14 +214,14 @@ export { isGithubActionsAvailable as isPluginApplicableToEntity }; // // @public (undocumented) export type Job = { - html_url: string; + html_url?: string; status: string; - conclusion: string; + conclusion?: string; started_at: string; - completed_at: string; + completed_at?: string; id: number; name: string; - steps: Step[]; + steps?: Step[]; }; // Warning: (ae-missing-release-tag) "Jobs" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) @@ -272,7 +272,7 @@ export type Step = { status: string; conclusion?: string; number: number; - started_at: string; - completed_at: string; + started_at?: string; + completed_at?: string; }; ```