Skip to content

Commit

Permalink
Added octokit parser
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhoski committed Jun 13, 2024
1 parent 5ce2b9f commit f29f89e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/buildSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ export async function processAndDisplayBuildSummary() {
}

export function getWorkflowStepNames(repository: string) {
console.log('JJJJJJJJJJJJJJJJJJJJJ*', process.env.GITHUB_REPOSITORY);
const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/');
//console.log('JJJJJJJJJJJJJJJJJJJJJ*', process.env.GITHUB_REPOSITORY);
const [owner, repo] = repository.split('/');
console.log(owner);
console.log(repo);
const runId = process.env.GITHUB_RUN_ID
Expand Down

0 comments on commit f29f89e

Please sign in to comment.