Skip to content

Commit 56beaf9

Browse files
authored
Update authors list for 2.8.3 (#11263)
Update authors list
1 parent 84d3469 commit 56beaf9

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

Authors.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Authors
22

3-
The Microsoft Mixed Reality Toolkit is a collaborative project containing contributions from individuals around the world. Our sincere thanks to all who have, and continue to contribute.
3+
The Microsoft Mixed Reality Toolkit is a collaborative project containing contributions from individuals around the world. Our sincere thanks to all who have contributed and all who continue to contribute.
44

55
- achaperon
66
- Adam Mitchell (AdamMitchell-ms)
77
- Addison Linville (radicalad)
88
- ADP-JoNeff
9-
- afarchy
109
- Against Lightning (AgainstLightning)
1110
- Agredek
1211
- alandergrouse (alandergrouse)
1312
- Alex Floyd (elbuhofantasma)
1413
- Alexander Seeck (Alexees)
14+
- Alon Farchy (afarchy)
1515
- Andrew Hall (ryzngard)
1616
- Anton Zachesov (googlan)
1717
- Anuraag Puri (anuraag016)
@@ -22,7 +22,7 @@ The Microsoft Mixed Reality Toolkit is a collaborative project containing contri
2222
- Bertrand Oustrière (BertrandOustriere)
2323
- Billy Franscois (BillyFrcs)
2424
- Blake Gross (blgrossMS)
25-
- Bowen Zhang (BerwinZ)
25+
- Bowen Zhang (BowenBZ)
2626
- Brandon Furtwangler (brandf)
2727
- Bryan Truong (bhtruong93)
2828
- C. M. Barth (chrisfromwork)
@@ -52,6 +52,7 @@ The Microsoft Mixed Reality Toolkit is a collaborative project containing contri
5252
- Eric Fiscus (MRW-Eric)
5353
- Eric O'Brien (ericob)
5454
- Eric prvncher (provencher)
55+
- Esteban Fuentealba (EstebanFuentealba)
5556
- etiennemargraff (meulta)
5657
- Eusebiu Marcu (eusebiu)
5758
- Evan Tice (in2dair)
@@ -69,8 +70,10 @@ The Microsoft Mixed Reality Toolkit is a collaborative project containing contri
6970
- Harrison Yu (harrisonyu)
7071
- hybridherbst
7172
- Hyung-il Kim (hyungilkim)
73+
- Iulian Radu (iuli4n)
7274
- Jack Yang (jackyangzzh)
7375
- James Provan (JamesProvan-UL)
76+
- Jamie Magee (JamieMagee)
7477
- Jared Bienz [MSFT] (jbienzms)
7578
- Jarod (jshowacre)
7679
- Jerome Humbert (djee-ms)
@@ -88,6 +91,7 @@ The Microsoft Mixed Reality Toolkit is a collaborative project containing contri
8891
- julianloehr-kg
8992
- JungJik Lee (fnwinter)
9093
- jverral
94+
- keith-phillips
9195
- Ken Jakubzak (KenJakubzak)
9296
- Kent1 (Kent1LG)
9397
- Kevin Foley (kevinfoley)
@@ -108,6 +112,7 @@ The Microsoft Mixed Reality Toolkit is a collaborative project containing contri
108112
- Malcolm Tyrrell (MalcolmTyrrell)
109113
- maleicacid (kazuki0824)
110114
- malnas01
115+
- Manuel Pezzera (manuelpezzera)
111116
- Marek Stój (marek-stoj)
112117
- Mark Finch (fast-slow-still)
113118
- Matteo Valoriani (mvaloriani)
@@ -130,7 +135,6 @@ The Microsoft Mixed Reality Toolkit is a collaborative project containing contri
130135
- PatientEz
131136
- Patrick Cook (darax)
132137
- Philipp (AllBecomesGood)
133-
- Proton-V
134138
- ritijain
135139
- Robert Butterworth (RobertButterworthMS)
136140
- Robert Onulak (Ziugy)
@@ -144,6 +148,7 @@ The Microsoft Mixed Reality Toolkit is a collaborative project containing contri
144148
- Shawn Gwin (sgwin)
145149
- Shinya Tachihara (decoc)
146150
- Simon (Darkside) Jackson (SimonDarksideJ)
151+
- Simon Ferquel (simonferquel)
147152
- sostel
148153
- Srinjoy Majumdar (srinjoym)
149154
- Stefan Wasserbauer (wassx)
@@ -155,6 +160,7 @@ The Microsoft Mixed Reality Toolkit is a collaborative project containing contri
155160
- Todd Williams (killerantz)
156161
- Troy Ferrell (Troy-Ferrell)
157162
- Vanessa Oliva (vaoliva)
163+
- Vsevolod Belskiy (Proton-V)
158164
- Weasy (Weasy666)
159165
- Will (wiwei)
160166
- William Tian (witian)

scripts/ci/contributors.py

+10-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from github import Github
1010
from github.Repository import Repository
1111

12-
AUTHORS_PAGE_HEADER = "# Authors\n\nThe Microsoft Mixed Reality Toolkit is a collaborative project containing contributions from individuals around the world. Our sincere thanks to all who have, and continue to contribute."
12+
AUTHORS_PAGE_HEADER = "# Authors\n\nThe Microsoft Mixed Reality Toolkit is a collaborative project containing contributions from individuals around the world. Our sincere thanks to all who have contributed and all who continue to contribute."
1313

1414
args_parser = argparse.ArgumentParser()
1515
args_parser.add_argument('--repo', type=str, required=True)
@@ -18,10 +18,12 @@
1818
args_parser.add_argument('--pat', type=str, required=True)
1919
args = args_parser.parse_args()
2020

21+
2122
def get_all_authors(github_repo: Repository) -> str:
2223
authors = github_repo.get_contributors()
2324
# Sort alphabetically by name or login if no name is present
24-
authors = sorted(authors, key=lambda author: str.lower(author.login) if author.name is None else str.lower(author.name))
25+
authors = sorted(authors, key=lambda author: str.lower(
26+
author.login) if author.name is None else str.lower(author.name))
2527
author_list = ""
2628
for author in authors:
2729
# Filter the MRTK 🤖 from the list
@@ -33,14 +35,18 @@ def get_all_authors(github_repo: Repository) -> str:
3335
author_list += "- " + author.name + " (" + author.login + ")\n"
3436
return author_list
3537

38+
3639
def main(args):
3740
github_access = Github(args.pat)
3841
github_repo = github_access.get_repo(args.repo)
3942
author_list = get_all_authors(github_repo)
4043

41-
f = open("Authors.md" if args.file_location is None else args.file_location, "w", encoding="utf-8")
42-
f.write((AUTHORS_PAGE_HEADER if args.file_header is None else args.file_header) + "\n\n" + author_list)
44+
f = open("Authors.md" if args.file_location is None else args.file_location,
45+
"w", encoding="utf-8")
46+
f.write((AUTHORS_PAGE_HEADER if args.file_header is None else args.file_header) +
47+
"\n\n" + author_list)
4348
f.close()
4449

50+
4551
if __name__ == '__main__':
4652
main(args)

0 commit comments

Comments
 (0)