This repository was archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
129 lines (110 loc) Β· 3.82 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
128
129
import {appAuth} from '@stoe/octoherd-script-common'
import {composeCreatePullRequest} from 'octokit-plugin-create-pull-request'
/**
* @param {import('@octoherd/cli').Octokit} octokit
* @param {import('@octoherd/cli').Repository} repository
* @param {object} options
* @param {int} [options.appId=0]
* @param {string} [options.privateKey='']
* @param {boolean} [options.dryRun=false]
*/
export async function script(octokit, repository, {appId = 0, privateKey = '', dryRun = false}) {
const {
archived,
default_branch,
disabled,
fork,
language,
name: repo,
owner: {login: owner},
size,
clone_url: url,
} = repository
// skip archived, disabled, forked and empty repos
if (archived || disabled || fork || size === 0) return
// skip non JavaScript repos
const lang = language ? language.toLowerCase() : undefined
if (lang !== 'javascript') {
octokit.log.info({change: false, lang}, ` π not a JavaScript repository`)
return
}
let newContent = ''
// skip repostories without action.yml
try {
let ok = octokit
if (appId && privateKey) {
try {
ok = await appAuth(repository, appId, privateKey)
octokit.log.info(` π€ authenticated as app`)
} catch (error) {
octokit.log.info({error}, ` β failed to authenticate as app`)
return
}
}
// https://docs.github.com/en/rest/reference/repos#get-repository-content
const {data} = await ok.request('GET /repos/{owner}/{repo}/contents/{path}', {
owner,
repo,
path: 'action.yml',
})
const options = {
owner,
repo,
title: 'Update node version',
head: 'octoherd-script/action-node-version',
base: default_branch,
body: 'This pull request updates the node version to node16',
createWhenEmpty: false,
}
if (data && data.name === 'action.yml') {
const content = Buffer.from(data.content, 'base64').toString('utf-8')
if (content.includes("using: 'node12'")) {
octokit.log.warn({url}, ` πͺ needs to be updated from node12 to node16`)
newContent = content.replace("using: 'node12'", "using: 'node16'")
const PR = {
...options,
changes: [
{
files: {
'action.yml': newContent,
},
commit: `π€ Update node version to node16`,
emptyCommit: false,
},
],
}
if (dryRun) return
// open a pull request to replace node12 with node16
const {data: pr} = await composeCreatePullRequest(ok, PR)
octokit.log.info({change: true}, ` π€ pull request created ${pr.html_url}`)
} else if (content.includes("using: 'node14'")) {
octokit.log.warn({url}, ` πͺ needs to be updated from node14 to node16`)
newContent = content.replace("using: 'node14'", "using: 'node16'")
const PR = {
...options,
changes: [
{
files: {
'action.yml': newContent,
},
commit: `π€ Update node version to node16`,
emptyCommit: false,
},
],
}
if (dryRun) return
// open a pull request to replace node14 with node16
const {data: pr} = await composeCreatePullRequest(ok, PR)
octokit.log.info({change: true}, ` π€ pull request created ${pr.html_url}`)
} else if (content.includes("using: 'node16'")) {
octokit.log.info({url}, ` π already using node16`)
return
}
}
} catch (error) {
octokit.log.info({change: false, url}, ` π not a GitHub Actions repository`)
return
}
octokit.log.info(` β
${url}`)
return
}