-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathindex.js
60 lines (56 loc) · 1.81 KB
/
index.js
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
const action = require("./src/action");
const config = require("./src/test_config");
const core = require("@actions/core");
const { context } = require("@actions/github");
const TEST_MODE = process.argv.includes("test");
async function main() {
let githubToken, owner, repo, leetcodeCSRFToken, leetcodeSession;
let filterDuplicateSecs, destinationFolder;
if (TEST_MODE) {
if (
!config.GITHUB_TOKEN ||
!config.GITHUB_REPO ||
!config.LEETCODE_CSRF_TOKEN ||
!config.LEETCODE_SESSION
) {
throw new Error(
"Missing required configuration in src/test_config.js needed to run the test",
);
}
githubToken = config.GITHUB_TOKEN;
[owner, repo] = config.GITHUB_REPO.split("/");
leetcodeCSRFToken = config.LEETCODE_CSRF_TOKEN;
leetcodeSession = config.LEETCODE_SESSION;
filterDuplicateSecs = config.FILTER_DUPLICATE_SECS;
destinationFolder = config.DESTINATION_FOLDER;
verbose = config.VERBOSE.toString(); // Convert to string to match core.getInput('verbose') return type
commitHeader = config.COMMIT_HEADER;
} else {
githubToken = core.getInput("github-token");
owner = context.repo.owner;
repo = context.repo.repo;
leetcodeCSRFToken = core.getInput("leetcode-csrf-token");
leetcodeSession = core.getInput("leetcode-session");
filterDuplicateSecs = core.getInput("filter-duplicate-secs");
destinationFolder = core.getInput("destination-folder");
verbose = core.getInput("verbose");
commitHeader = core.getInput("commit-header");
}
await action.sync({
githubToken,
owner,
repo,
leetcodeCSRFToken,
leetcodeSession,
filterDuplicateSecs,
destinationFolder,
verbose,
commitHeader,
});
}
main().catch((error) => {
action.log(error.stack);
if (!TEST_MODE) {
core.setFailed(error);
}
});