-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
Copy pathcreate-release-notes.js
140 lines (115 loc) · 3.54 KB
/
create-release-notes.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
130
131
132
133
134
135
136
137
138
139
140
require(`dotenv`).config()
const yargs = require(`yargs`)
const fs = require(`fs`)
const path = require(`path`)
const { Octokit } = require(`@octokit/rest`)
const childProcess = require(`child_process`)
yargs.parserConfiguration({
"parse-numbers": false,
})
if (!process.env.GITHUB_ACCESS_TOKEN) {
throw new Error(`GITHUB_ACCESS_TOKEN env var not set`)
}
const MONTH_NAMES = [
`January`,
`February`,
`March`,
`April`,
`May`,
`June`,
`July`,
`August`,
`September`,
`October`,
`November`,
`December`,
]
const octokit = new Octokit({
auth: `token ${process.env.GITHUB_ACCESS_TOKEN}`,
})
const argv = yargs
.command(
`* <release> <date>`,
`Creates a new release note PR`,
commandBuilder =>
commandBuilder
.positional(`release`, { type: `string` })
.positional(`date`, { type: `string` })
)
.check(argv => {
if (!/^[1-9][0-9]*\.\d+$/.test(argv.release)) {
throw new Error(`"${argv.release}" is not a release version`)
}
// loose date validation, but good enough
if (!/^20[0-9]{2}-[0-9]{2}-[0-9]{2}$/.test(argv.date)) {
throw new Error(`"${argv.date}" is not a valid YYYY-MM-DD date`)
}
return true
}).argv
const repo = `gatsby`
const owner = `gatsbyjs`
// no try/catches - if it fails at any point - let it fail and just do stuff manually ;)
// this is just for happy path - if there is extra work needed - this script won't be able to do it
async function run() {
const releaseNotesBranchName = `release-notes-${argv.release}`
const releaseParts = argv.release.split(`.`)
const [year, month] = argv.date.split(`-`)
const commitMessage = `chore(docs): Release Notes for ${argv.release}`
const body = [
`## Description`,
`Release notes for ${argv.release}`,
`[Rendered View](https://github.com/gatsbyjs/gatsby/blob/release-notes-${argv.release}/docs/docs/reference/release-notes/v${argv.release}/index.md)`,
]
const previousRelease =
releaseParts[1] == `0`
? `UNKNOWN`
: `${releaseParts[0]}.${parseInt(releaseParts[1]) - 1}`
// TODO check how many releases were already done this month
const monthYearIndex = ` TODO`
childProcess.execSync(`git checkout -b "${releaseNotesBranchName}"`, {
stdio: `inherit`,
})
const newReleaseNotesPath = path.join(
__dirname,
`..`,
`docs/docs/reference/release-notes/v${argv.release}/index.md`
)
const template = fs
.readFileSync(path.join(__dirname, `create-release-notes.template.md`))
.toString()
const contents = template
.replace(/\${VERSION}/g, argv.release)
.replace(/\${PREVIOUS_VERSION}/g, previousRelease)
.replace(/\${DATE}/g, argv.date)
.replace(/\${INDEX}/g, monthYearIndex)
.replace(/\${YEAR}/g, year)
.replace(/\${MONTH}/g, MONTH_NAMES[parseInt(month) - 1])
fs.mkdirSync(path.dirname(newReleaseNotesPath), { recursive: true })
fs.writeFileSync(newReleaseNotesPath, contents)
childProcess.execSync(`git add ${newReleaseNotesPath}`, {
stdio: `inherit`,
})
childProcess.execSync(`git commit -m "${commitMessage}"`, {
stdio: `inherit`,
})
childProcess.execSync(`git push origin +${releaseNotesBranchName}`, {
stdio: `inherit`,
})
const pr = await octokit.pulls.create({
owner,
repo,
title: commitMessage,
head: releaseNotesBranchName,
base: `master`,
draft: true,
body: body.join(`\n\n`),
})
console.log(`\n---\n\nPR opened - ${pr.data.html_url}`)
await octokit.issues.addLabels({
owner,
repo,
issue_number: pr.data.number,
labels: [`type: documentation`],
})
}
run()