This commit is contained in:
Yair Morgenstern 2023-02-09 19:27:27 +02:00
parent 75d7494f89
commit 5c9ea8994c

View File

@ -41,7 +41,7 @@ async function parseCommits() {
var reachedPreviousVersion = false;
var nextVersionString = "";
result.data.forEach(commit => {
if (reachedPreviousVersion) return;
if (reachedPreviousVersion || commit.author == null) return;
var author = commit.author.login;
if (author === "uncivbot[bot]") return;
var commitMessage = commit.commit.message.split("\n")[0];