Skip to content

Commit

Permalink
openai api test 16
Browse files Browse the repository at this point in the history
  • Loading branch information
davecthomas committed Mar 13, 2024
1 parent 64a9ece commit 34c1ca4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ export async function run(): Promise<void> {
for (const file of files) {
const base = context.payload.pull_request!.base.sha
const head = context.payload.pull_request!.head.sha
if (file.filename === "dist/index.js") continue
const diff: string = await getDiffForFile(
octokit,
repoOwner,
Expand All @@ -131,6 +132,7 @@ export async function run(): Promise<void> {
})

for (const file of commitDiff.files!) {
if (file.filename === "dist/index.js") continue
const diff = await getDiffForFile(
octokit,
repoOwner,
Expand Down

0 comments on commit 34c1ca4

Please sign in to comment.