Update uncivbot.yml

This commit is contained in:
Yair Morgenstern 2021-01-20 23:31:01 +02:00 committed by GitHub
parent 3c93372d0c
commit dac339fbf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,19 +32,16 @@ jobs:
if(commitMessage.startsWith("Merge ")) return
commitMessage = commitMessage.replace(/\(\#\d+\)/,"") // match PR auto-text, like (#2345)
if (author != context.repo.owner){
if (ownerToCommits[author]==undefined) ownerToCommits[author]=[]
if (ownerToCommits[author] == undefined) ownerToCommits[author]=[]
ownerToCommits[author].push(commitMessage)
}
else commitSummary += "\n\n" + commitMessage
});
Object.entries(ownerToCommits).forEach(entry => {
console.log("entry = "+JSON.stringify(entry))
const [author, commits] = entry;
if (commits.length==1) commitSummary += "\n\n" + commits[0] + " By "+author
if (commits.length==1) commitSummary += "\n\n" + commits[0] + " - By "+author
else {
commitSummary += "\n\nBy "+author+":"
console.log(JSON.stringify(commits))
commits.forEach(commitMessage => { commitSummary += "\n- "+commitMessage })
}
})