Skip to content

Commit

Permalink
build update
Browse files Browse the repository at this point in the history
  • Loading branch information
crs-k committed Dec 6, 2023
1 parent d3d2dc2 commit 7049856
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/functions/get-committer-login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function getRecentCommitLogin(sha: string): Promise<string> {
per_page: 1,
page: 1
})
const commitData = commitResponse.data;
const commitData = commitResponse.data
lastCommitter = commitData.committer?.login || commitData.author?.login || commitData.commit?.committer?.name || commitData.commit?.author?.name
assert.ok(lastCommitter, 'Committer cannot be empty.')
} catch (err) {
Expand Down

0 comments on commit 7049856

Please sign in to comment.