We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcd869f commit 4b9ccd2Copy full SHA for 4b9ccd2
1 file changed
.github/actions/article_review.py
@@ -126,13 +126,11 @@ def main():
126
# Get the changed files in the pull request
127
files = get_changed_files(pr)
128
129
- print(files)
130
-
131
# Send the files to OpenAI for review
132
- #review = send_to_openai(files)
133
+ review = send_to_openai(files)
+
134
# Post the review as a comment on the pull request
135
- #post_comment(pr, review)
+ post_comment(pr, review)
136
137
if __name__ == "__main__":
138
main() # Execute the main function
0 commit comments