We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e2d165 commit eda9489Copy full SHA for eda9489
dist/index.js
@@ -15226,6 +15226,11 @@ const runAction = async () => {
15226
for (let i = 0; i < comments.length; i++) {
15227
const comment = comments[i];
15228
const path = comment.path;
15229
+ if (!isFileSupported(path)) {
15230
+ console.log(`Skipping unsupported file ${path}`);
15231
+ continue;
15232
+ }
15233
+
15234
const line = lineNumber(comment);
15235
const language = langFromFileExtension(path);
15236
console.log(`Running code generation for file ${path}. Language detected: ${language}. Line number: ${line}. Prompt: ${comment.body}`);
0 commit comments