Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added octokit parser
Browse files Browse the repository at this point in the history
nbhoski committed Jun 13, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 19eac0d commit d26a782
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/buildSummary.ts
Original file line number Diff line number Diff line change
@@ -108,9 +108,9 @@ export async function getWorkflowRunJobs(owner: string, repo: string, runId: str
const jobs = response.data.jobs;
jobs.forEach((jobs as string) => {
console.log(`Job: ${jobs.name}`);
jobs.steps.forEach((step as string) => {
console.log(` **Step: ${step.name}`);
console.log(` **Uses: ${step.uses}`);
jobs.steps.forEach((steps as string) => {
console.log(` **Step: ${steps.name}`);
console.log(` **Uses: ${steps.uses}`);
});
});
} catch (error) {

0 comments on commit d26a782

Please sign in to comment.