1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-09-19 17:01:47 +02:00

Merge pull request #77 from fosscord/revert-76-filter-action-user

Revert "Filter the action user from the contributors"
This commit is contained in:
xnacly 2021-07-28 21:37:38 +02:00 committed by GitHub
commit 00ec6f269e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,11 +41,8 @@ for repo in repos:
contr = list(map(format_contributor, contr))
for cont in contr:
if not cont["login"].lower() in contributors_names:
if not cont["login"] == "actions-user":
contributors_names.append(cont["login"].lower())
contributors.append(cont)
else :
continue
contributors_names.append(cont["login"].lower())
contributors.append(cont)
else:
continue