mirror of
https://github.com/freeedcom/ai-codereviewer.git
synced 2025-04-21 10:06:47 +00:00
Use GH config dir
This commit is contained in:
parent
ed407c8427
commit
eea1319b0a
6 changed files with 21 additions and 21 deletions
7
dist/index.js
vendored
7
dist/index.js
vendored
|
@ -52,7 +52,7 @@ const minimatch_1 = __importDefault(__nccwpck_require__(2002));
|
|||
const yaml_1 = __nccwpck_require__(4083);
|
||||
const GITHUB_TOKEN = core.getInput("GITHUB_TOKEN");
|
||||
const OPENAI_API_KEY = core.getInput("OPENAI_API_KEY");
|
||||
const OPENAI_API_MODEL = core.getInput("OPENAI_API_MODEL");
|
||||
const OPENAI_API_MODEL = core.getInput("OPENAI_API_MODEL") || "gpt-4o";
|
||||
const octokit = new rest_1.Octokit({ auth: GITHUB_TOKEN });
|
||||
const openai = new openai_1.default({
|
||||
apiKey: OPENAI_API_KEY,
|
||||
|
@ -236,7 +236,7 @@ function main() {
|
|||
}
|
||||
const parsedDiff = (0, parse_diff_1.default)(diff);
|
||||
const rulesFiles = core
|
||||
.getInput("rules_file_name")
|
||||
.getInput("config-file")
|
||||
.trim();
|
||||
const rules = readRules(rulesFiles);
|
||||
const { ignore: allIgnorePatterns = [] } = rules;
|
||||
|
@ -249,8 +249,7 @@ function main() {
|
|||
}
|
||||
});
|
||||
}
|
||||
function readRules(fileName) {
|
||||
const fileContents = (0, fs_1.readFileSync)(fileName, "utf8");
|
||||
function readRules(fileContents) {
|
||||
const parsed = (0, yaml_1.parse)(fileContents, { mapAsMap: true });
|
||||
// Transform the parsed Map into a plain object
|
||||
const rules = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue