-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcreateChangelog.js
33 lines (28 loc) · 1.02 KB
/
createChangelog.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
const fetch = require("node-fetch");
const { getTodayDate, getYesterdayDate } = require("./utils");
const { tdate, tmonth, tyear } = getTodayDate();
const { ydate, ymonth, yyear } = getYesterdayDate();
const yesterdayDate = `${yyear}-${ymonth}-${ydate}`;
const todayDate = `${tyear}-${tmonth}-${tdate}`;
async function createChangelog(since = yesterdayDate, until = todayDate) {
let changelogBody = [];
await fetch(
`https://api.github.com/repos/cssnano/cssnano/commits?branch=master&since=${since}&until=${until}`
)
.then(r => r.json())
.then(commits => {
commits.forEach(({ commit, html_url, author }) => {
let commitAuthor = author;
if (Array.isArray(author)) {
commitAuthor = author[0];
}
changelogBody.push(
` - ${commit.message.split("\n")[0]} (${html_url}) - by (${
commitAuthor.login
})`
);
});
});
return { body: changelogBody.join("\n"), changelogArray: changelogBody };
}
module.exports = createChangelog;