Skip to content

Commit

Permalink
Fixing GH Actions code review
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrodriguez1989 committed Aug 8, 2024
1 parent 886dc03 commit 8516527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/code-review-gpt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
GITHUB_BASE_REF <- paste0("origin/", Sys.getenv("GITHUB_BASE_REF"))
GITHUB_HEAD_REF <- paste0("origin/", Sys.getenv("GITHUB_HEAD_REF"))
system("git fetch origin")
git_diff_cmnd <- paste("git diff", GITHUB_HEAD_REF, GITHUB_BASE_REF)
git_diff_cmnd <- paste("git diff", GITHUB_BASE_REF, GITHUB_HEAD_REF)
diff <- system(git_diff_cmnd, intern = TRUE)
prompt <- paste(
paste0(
Expand Down

0 comments on commit 8516527

Please sign in to comment.