exclude hughrun from contributors
This commit is contained in:
parent
d05f7ba683
commit
cf06a819cc
3
.github/scripts/contributors.js
vendored
3
.github/scripts/contributors.js
vendored
|
@ -12,9 +12,12 @@ for (let name of contributors) {
|
|||
for (let commit of eventJson.commits) {
|
||||
// we only look for authors, not commiters, so we automatically ignore "actions-user"
|
||||
if ( !contributors.includes(commit.author.name) ) {
|
||||
// auto-commits use my username, not my actual name
|
||||
if (commit.author.name != 'hughrun') {
|
||||
contributors.push(commit.author.name)
|
||||
}
|
||||
}
|
||||
}
|
||||
$('#contributors-list').append(`<li>${name}</li>\n`)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,4 +5,3 @@ Andrew Kelly
|
|||
Hugh Rundle
|
||||
Sonya Lange
|
||||
Stephanie Schwarze
|
||||
hughrun
|
||||
|
|
Loading…
Reference in a new issue