forked from wei/pull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanual-process.ts
74 lines (61 loc) · 1.92 KB
/
manual-process.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { connectMongoDB, disconnectMongoDB } from "@/src/configs/database.ts";
import { JobPriority, RepositoryModel } from "@wei/probot-scheduler";
import { createProbot } from "probot";
import logger from "@/src/utils/logger.ts";
import { getPullConfig } from "@/src/utils/get-pull-config.ts";
import { Pull } from "@/src/processor/pull.ts";
async function main(full_name: string) {
let exitCode = 0;
try {
await connectMongoDB();
logger.info(`🏃 Processing repo job ${full_name}`);
try {
// Get Octokit
const probot = createProbot({ overrides: { log: logger } });
const repoRecord = await RepositoryModel.findOne({ full_name });
if (!repoRecord) {
logger.error({ full_name }, `❌ Repo record not found`);
throw new Error(`❌ Repo record not found`);
}
const { installation_id, owner: { login: owner }, name: repo } =
repoRecord;
const octokit = await probot.auth(installation_id);
const config = await getPullConfig(octokit, logger, {
installation_id,
owner,
repo,
repository_id: 0,
metadata: {
cron: "",
job_priority: JobPriority.Normal,
repository_id: 0,
},
});
if (!config) {
logger.info(`⚠️ No config found, skipping`);
return;
}
const pull = new Pull(octokit, { owner, repo, logger }, config);
await pull.routineCheck();
logger.info(`✅ Repo job processed successfully`);
} catch (error) {
logger.error(error, "❌ Repo job failed");
}
} catch (error) {
logger.error(error, "Error processing");
exitCode = 1;
} finally {
await disconnectMongoDB();
Deno.exit(exitCode);
}
}
if (import.meta.main) {
const args = Deno.args;
if (args.length !== 1) {
logger.error(
"Usage: deno task manual-process <owner>/<repo>",
);
Deno.exit(1);
}
await main(args[0]);
}