-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
127 lines (114 loc) · 3.35 KB
/
script.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import { composeCreatePullRequest } from "octokit-plugin-create-pull-request";
let pkgLockfile;
/**
* Upgrade current scripts to use the built-in CLI
*
* @param {import('@octoherd/cli').Octokit} octokit
* @param {import('@octoherd/cli').Repository} repository
*/
export async function script(octokit, repository) {
const owner = repository.owner.login;
const repo = repository.name;
if (!/^script-/.test(repo)) {
octokit.log.info("Ignoring %s, not a script repository", repo);
return;
}
// load package-lock.json file contents from octoherd/script-star-or-unstar
pkgLockfile =
pkgLockfile ||
JSON.parse(
(
await octokit.request("GET /repos/{owner}/{repo}/contents/{path}", {
mediaType: {
format: "raw",
},
owner: "octoherd",
repo: "script-star-or-unstar",
path: "package-lock.json",
})
).data
);
const { data: pr } = await composeCreatePullRequest(octokit, {
owner,
repo,
title: "feat: CLI",
body: `This pull requests enables this script to be run directly via \`npx @octoherd/${repo}\``,
head: "cli",
changes: [
{
files: {
"cli.js": `#!/usr/bin/env node
import { script } from "./script.js";
import { run } from "@octoherd/cli/run";
run(script);
`,
},
commit: "feat: cli",
},
{
files: {
"package.json": ({ encoding, content }) => {
const pkg = JSON.parse(
Buffer.from(content, encoding).toString("utf-8")
);
pkg.bin = {
[`octoherd-${repo}`]: "./cli.js",
};
pkg.devDependencies = {};
pkg.dependencies = {
"@octoherd/cli": "^3.3.0",
};
return JSON.stringify(pkg, null, 2) + "\n";
},
},
commit: "build(deps): replace dependencies with `@octoherd/cli`",
},
{
files: {
"package-lock.json": () => {
return (
JSON.stringify(
{
...pkgLockfile,
name: `@octoherd/${repo}`,
},
null,
2
) + "\n"
);
},
},
commit: "build(deps): lock file",
},
{
files: {
"script.js": ({ encoding, content }) => {
const scriptContent = Buffer.from(content, encoding).toString(
"utf-8"
);
return scriptContent
.replace("@octoherd/octokit", "@octoherd/cli")
.replace(
'import(\'@octokit/openapi-types\').components["schemas"]["repository"]',
"import('@octoherd/cli').Repository"
);
},
"README.md": ({ encoding, content }) => {
const readmeContent = Buffer.from(content, encoding).toString(
"utf-8"
);
return readmeContent
.replace(/git clone .*\n/, "")
.replace("npx @octoherd/cli", `npx @octoherd/${repo}`)
.replace(
"script-close-renovate-dashboard-issues/script.js \\\n",
""
);
},
},
commit: "refactor: adapt for `@octoherd/cli`",
},
],
});
octokit.log.info("Pull request created: %s", pr.html_url);
}