mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
github-actions is not a contributor
This commit is contained in:
parent
28044db906
commit
ad366090e9
1 changed files with 4 additions and 1 deletions
|
@ -28,8 +28,11 @@ async function getContributors () {
|
||||||
//}
|
//}
|
||||||
});
|
});
|
||||||
const arr = await response.json();
|
const arr = await response.json();
|
||||||
console.log(arr)
|
|
||||||
for (const item of arr) {
|
for (const item of arr) {
|
||||||
|
if (item.login === "github-actions[bot]") {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
const found = output.find(i => i.login === item.login)
|
const found = output.find(i => i.login === item.login)
|
||||||
if (!found) {
|
if (!found) {
|
||||||
output.push(item)
|
output.push(item)
|
||||||
|
|
Loading…
Reference in a new issue