From 647827715e54a4d2ab5e0f15f8936dea931200e8 Mon Sep 17 00:00:00 2001
From: Nikhil Bhoski <47204011+nbhoski@users.noreply.github.com>
Date: Wed, 12 Jun 2024 16:24:25 +0530
Subject: [PATCH] Added octokit parser

---
 src/buildSummary.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/buildSummary.ts b/src/buildSummary.ts
index 0845a30..138a3a6 100644
--- a/src/buildSummary.ts
+++ b/src/buildSummary.ts
@@ -90,7 +90,7 @@ export function getWorkflowStepNames() {
 
 
   // Function to get workflow run jobs and step names
-export async function getWorkflowRunJobs(owner, repo, runId) {
+export async function getWorkflowRunJobs(owner as string, repo as string, runId as string) {
    // Replace with your GitHub personal access token
   const octokit = new Octokit({
   auth: process.env.GITHUB_TOKEN,