Skip to content

Commit 4b9ccd2

Browse files
committed
uncomment article review script
1 parent fcd869f commit 4b9ccd2

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/actions/article_review.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,11 @@ def main():
126126
# Get the changed files in the pull request
127127
files = get_changed_files(pr)
128128

129-
print(files)
130-
131129
# Send the files to OpenAI for review
132-
#review = send_to_openai(files)
133-
130+
review = send_to_openai(files)
131+
134132
# Post the review as a comment on the pull request
135-
#post_comment(pr, review)
133+
post_comment(pr, review)
136134

137135
if __name__ == "__main__":
138136
main() # Execute the main function

0 commit comments

Comments
 (0)