Skip to content

Commit

Permalink
Filter out duplicated contributor
Browse files Browse the repository at this point in the history
  • Loading branch information
norberttech committed Feb 10, 2024
1 parent 5d6742b commit 5572258
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions web/landing/src/Flow/Website/Service/Github.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public function contributors() : array
->drop('unpacked', 'data')
->filter(not(ref('login')->endsWith(lit('[bot]'))))
->filter(not(ref('login')->equals(lit('aeon-automation'))))
->filter(not(ref('login')->equals(lit('norbertmwk'))))
->withEntry('avatar_url', ref('avatar_url')->concat(lit('&s=128')))
->limit(24)
->write(to_memory($memory = new ArrayMemory()))
Expand Down

0 comments on commit 5572258

Please sign in to comment.