Skip to content

Commit 33c0844

Browse files
Update create-change-log.ts
1 parent 887a5b1 commit 33c0844

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev-tools/src/create-change-log.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ const fetchMilestonesInNewerOrderUpTo = async (latestVersion: string) => {
7979
// sometimes a new mile stone is missing.
8080
const allMilestones =
8181
[
82-
...await githubFetch<Milestone[]>("https://api.github.com/repos/kyuridenamida/atcoder-tools/milestones?state=open"),
83-
...await githubFetch<Milestone[]>("https://api.github.com/repos/kyuridenamida/atcoder-tools/milestones?state=closed");
82+
...(await githubFetch<Milestone[]>("https://api.github.com/repos/kyuridenamida/atcoder-tools/milestones?state=open")),
83+
...(await githubFetch<Milestone[]>("https://api.github.com/repos/kyuridenamida/atcoder-tools/milestones?state=closed"))
8484
];
8585
return allMilestones.filter(milestone => {
8686
if (!isValidVersion(milestone.title)) {

0 commit comments

Comments
 (0)