repackage

This commit is contained in:
Ville Saukkonen 2023-07-31 18:24:34 +03:00
parent d3abad1bc9
commit 2821669598
2 changed files with 175 additions and 256 deletions

151
dist/index.js vendored

@ -6,87 +6,40 @@ require('./sourcemap-register.js');/******/ (() => { // webpackBootstrap
"use strict"; "use strict";
var __createBinding = var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
(this && this.__createBinding) ||
(Object.create
? function (o, m, k, k2) {
if (k2 === undefined) k2 = k; if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k); var desc = Object.getOwnPropertyDescriptor(m, k);
if ( if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
!desc || desc = { enumerable: true, get: function() { return m[k]; } };
("get" in desc ? !m.__esModule : desc.writable || desc.configurable)
) {
desc = {
enumerable: true,
get: function () {
return m[k];
},
};
} }
Object.defineProperty(o, k2, desc); Object.defineProperty(o, k2, desc);
} }) : (function(o, m, k, k2) {
: function (o, m, k, k2) {
if (k2 === undefined) k2 = k; if (k2 === undefined) k2 = k;
o[k2] = m[k]; o[k2] = m[k];
}); }));
var __setModuleDefault = var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
(this && this.__setModuleDefault) ||
(Object.create
? function (o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v }); Object.defineProperty(o, "default", { enumerable: true, value: v });
} }) : function(o, v) {
: function (o, v) {
o["default"] = v; o["default"] = v;
}); });
var __importStar = var __importStar = (this && this.__importStar) || function (mod) {
(this && this.__importStar) ||
function (mod) {
if (mod && mod.__esModule) return mod; if (mod && mod.__esModule) return mod;
var result = {}; var result = {};
if (mod != null) if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
for (var k in mod)
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
__createBinding(result, mod, k);
__setModuleDefault(result, mod); __setModuleDefault(result, mod);
return result; return result;
}; };
var __awaiter = var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
(this && this.__awaiter) || function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
function (thisArg, _arguments, P, generator) {
function adopt(value) {
return value instanceof P
? value
: new P(function (resolve) {
resolve(value);
});
}
return new (P || (P = Promise))(function (resolve, reject) { return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
try { function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
step(generator.next(value)); function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
} catch (e) {
reject(e);
}
}
function rejected(value) {
try {
step(generator["throw"](value));
} catch (e) {
reject(e);
}
}
function step(result) {
result.done
? resolve(result.value)
: adopt(result.value).then(fulfilled, rejected);
}
step((generator = generator.apply(thisArg, _arguments || [])).next()); step((generator = generator.apply(thisArg, _arguments || [])).next());
}); });
}; };
var __importDefault = var __importDefault = (this && this.__importDefault) || function (mod) {
(this && this.__importDefault) || return (mod && mod.__esModule) ? mod : { "default": mod };
function (mod) {
return mod && mod.__esModule ? mod : { default: mod };
}; };
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
const fs_1 = __nccwpck_require__(7147); const fs_1 = __nccwpck_require__(7147);
@ -97,7 +50,6 @@ const parse_diff_1 = __importDefault(__nccwpck_require__(4833));
const minimatch_1 = __importDefault(__nccwpck_require__(2002)); const minimatch_1 = __importDefault(__nccwpck_require__(2002));
const GITHUB_TOKEN = core.getInput("GITHUB_TOKEN"); const GITHUB_TOKEN = core.getInput("GITHUB_TOKEN");
const OPENAI_API_KEY = core.getInput("OPENAI_API_KEY"); const OPENAI_API_KEY = core.getInput("OPENAI_API_KEY");
const OPENAI_API_MODEL = core.getInput("OPENAI_API_MODEL");
const octokit = new rest_1.Octokit({ auth: GITHUB_TOKEN }); const octokit = new rest_1.Octokit({ auth: GITHUB_TOKEN });
const configuration = new openai_1.Configuration({ const configuration = new openai_1.Configuration({
apiKey: OPENAI_API_KEY, apiKey: OPENAI_API_KEY,
@ -106,9 +58,7 @@ const openai = new openai_1.OpenAIApi(configuration);
function getPRDetails() { function getPRDetails() {
var _a, _b; var _a, _b;
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
const { repository, number } = JSON.parse( const { repository, number } = JSON.parse((0, fs_1.readFileSync)(process.env.GITHUB_EVENT_PATH || "", "utf8"));
(0, fs_1.readFileSync)(process.env.GITHUB_EVENT_PATH || "", "utf8")
);
const prResponse = yield octokit.pulls.get({ const prResponse = yield octokit.pulls.get({
owner: repository.owner.login, owner: repository.owner.login,
repo: repository.name, repo: repository.name,
@ -119,8 +69,7 @@ function getPRDetails() {
repo: repository.name, repo: repository.name,
pull_number: number, pull_number: number,
title: (_a = prResponse.data.title) !== null && _a !== void 0 ? _a : "", title: (_a = prResponse.data.title) !== null && _a !== void 0 ? _a : "",
description: description: (_b = prResponse.data.body) !== null && _b !== void 0 ? _b : "",
(_b = prResponse.data.body) !== null && _b !== void 0 ? _b : "",
}; };
}); });
} }
@ -140,7 +89,8 @@ function analyzeCode(parsedDiff, prDetails) {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
const comments = []; const comments = [];
for (const file of parsedDiff) { for (const file of parsedDiff) {
if (file.to === "/dev/null") continue; // Ignore deleted files if (file.to === "/dev/null")
continue; // Ignore deleted files
for (const chunk of file.chunks) { for (const chunk of file.chunks) {
const prompt = createPrompt(file, chunk, prDetails); const prompt = createPrompt(file, chunk, prDetails);
const aiResponse = yield getAIResponse(prompt); const aiResponse = yield getAIResponse(prompt);
@ -177,9 +127,7 @@ function createPrompt(file, chunk, prDetails) {
- Use the given description only for the overall context and only comment the code. - Use the given description only for the overall context and only comment the code.
- IMPORTANT: NEVER suggest adding comments to the code. - IMPORTANT: NEVER suggest adding comments to the code.
Review the following code diff in the file "${ Review the following code diff in the file "${file.to}" and take the pull request title and description into account when writing the response.
file.to
}" and take the pull request title and description into account when writing the response.
Pull request title: ${prDetails.title} Pull request title: ${prDetails.title}
Pull request description: Pull request description:
@ -203,7 +151,7 @@ function getAIResponse(prompt) {
var _a, _b; var _a, _b;
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
const queryConfig = { const queryConfig = {
model: OPENAI_API_MODEL, model: "gpt-4",
temperature: 0.2, temperature: 0.2,
max_tokens: 700, max_tokens: 700,
top_p: 1, top_p: 1,
@ -211,25 +159,16 @@ function getAIResponse(prompt) {
presence_penalty: 0, presence_penalty: 0,
}; };
try { try {
const response = yield openai.createChatCompletion( const response = yield openai.createChatCompletion(Object.assign(Object.assign({}, queryConfig), { messages: [
Object.assign(Object.assign({}, queryConfig), {
messages: [
{ {
role: "system", role: "system",
content: prompt, content: prompt,
}, },
], ] }));
}) const res = ((_b = (_a = response.data.choices[0].message) === null || _a === void 0 ? void 0 : _a.content) === null || _b === void 0 ? void 0 : _b.trim()) || "[]";
);
const res =
((_b =
(_a = response.data.choices[0].message) === null || _a === void 0
? void 0
: _a.content) === null || _b === void 0
? void 0
: _b.trim()) || "[]";
return JSON.parse(res); return JSON.parse(res);
} catch (error) { }
catch (error) {
console.error("Error:", error); console.error("Error:", error);
return null; return null;
} }
@ -263,21 +202,11 @@ function main() {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
const prDetails = yield getPRDetails(); const prDetails = yield getPRDetails();
let diff; let diff;
const eventData = JSON.parse( const eventData = JSON.parse((0, fs_1.readFileSync)((_a = process.env.GITHUB_EVENT_PATH) !== null && _a !== void 0 ? _a : "", "utf8"));
(0, fs_1.readFileSync)(
(_a = process.env.GITHUB_EVENT_PATH) !== null && _a !== void 0
? _a
: "",
"utf8"
)
);
if (eventData.action === "opened") { if (eventData.action === "opened") {
diff = yield getDiff( diff = yield getDiff(prDetails.owner, prDetails.repo, prDetails.pull_number);
prDetails.owner, }
prDetails.repo, else if (eventData.action === "synchronize") {
prDetails.pull_number
);
} else if (eventData.action === "synchronize") {
const newBaseSha = eventData.before; const newBaseSha = eventData.before;
const newHeadSha = eventData.after; const newHeadSha = eventData.after;
const response = yield octokit.repos.compareCommits({ const response = yield octokit.repos.compareCommits({
@ -291,7 +220,8 @@ function main() {
.request({ url: response.data.diff_url }) .request({ url: response.data.diff_url })
.then((res) => res.data) .then((res) => res.data)
: null; : null;
} else { }
else {
console.log("Unsupported event:", process.env.GITHUB_EVENT_NAME); console.log("Unsupported event:", process.env.GITHUB_EVENT_NAME);
return; return;
} }
@ -305,22 +235,11 @@ function main() {
.split(",") .split(",")
.map((s) => s.trim()); .map((s) => s.trim());
const filteredDiff = parsedDiff.filter((file) => { const filteredDiff = parsedDiff.filter((file) => {
return !excludePatterns.some((pattern) => { return !excludePatterns.some((pattern) => { var _a; return (0, minimatch_1.default)((_a = file.to) !== null && _a !== void 0 ? _a : "", pattern); });
var _a;
return (0, minimatch_1.default)(
(_a = file.to) !== null && _a !== void 0 ? _a : "",
pattern
);
});
}); });
const comments = yield analyzeCode(filteredDiff, prDetails); const comments = yield analyzeCode(filteredDiff, prDetails);
if (comments.length > 0) { if (comments.length > 0) {
yield createReviewComment( yield createReviewComment(prDetails.owner, prDetails.repo, prDetails.pull_number, comments);
prDetails.owner,
prDetails.repo,
prDetails.pull_number,
comments
);
} }
}); });
} }

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long