-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add authors.md and its related automation script
- Loading branch information
Showing
2 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!-- | ||
Copyright (c) radicalbit-ai-monitoring contributors. | ||
Licensed under https://github.com/radicalbit/radicalbit-ai-monitoring/blob/main/LICENSE | ||
--> | ||
|
||
Contributors to radicalbit-ai-monitoring | ||
============================ | ||
radicalbit-ai-monitoring is developed and maintained by a community of people interested in providing a comprehensive solution for monitoring your Machine Learning and Large Language Models in production. | ||
|
||
|
||
<p align="center"> | ||
<img src="https://contributors-img.web.app/image?repo=radicalbit/radicalbit-ai-monitoring" width = "500"/> | ||
</p> | ||
|
||
|
||
Contributors (ordered by first contribution.) | ||
------------------------------------- | ||
[Full List of Contributors](https://github.com/radicalbit/radicalbit-ai-monitoring/graphs/contributors) | ||
|
||
- Paolo Filippelli (<[email protected]>) | ||
- Roberto Bentivoglio (<[email protected]>) | ||
- paoloyx (<[email protected]>) | ||
- Luca Tagliabue (<[email protected]>) | ||
- Mauro Cortellazzi (<[email protected]>) | ||
- Stefano Zamboni (<[email protected]>) | ||
- mmariniello90 (<[email protected]>) | ||
- Davide Valleri (<[email protected]>) | ||
- Lorenzo D'Agostino (<[email protected]>) | ||
- Daniele Tria (<[email protected]>) | ||
- rivamarco (<[email protected]>) | ||
- d-croci (<[email protected]>) | ||
- bigmoby (<[email protected]>) | ||
|
||
#### Generated by tools/update-authors.sh. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/sh | ||
#Update AUTHORS.md based on git history. | ||
|
||
git log --reverse --format='%aN (<%aE>)' | perl -we ' | ||
BEGIN { | ||
%seen = (), @authors = (); | ||
} | ||
while (<>) { | ||
next if $seen{$_}; | ||
next if /(dependabot\[bot\])/; | ||
next if /(devops\@radicalbit.ai)/; | ||
$seen{$_} = push @authors, "- ", $_; | ||
} | ||
END { | ||
print "<!--\n"; | ||
print "Copyright (c) radicalbit-ai-monitoring contributors.\n"; | ||
print "Licensed under https://github.com/radicalbit/radicalbit-ai-monitoring/blob/main/LICENSE\n"; | ||
print "-->\n\n"; | ||
print "Contributors to radicalbit-ai-monitoring\n"; | ||
print "============================\n"; | ||
print "radicalbit-ai-monitoring is developed and maintained by a community of people interested in providing a comprehensive solution for monitoring your Machine Learning and Large Language Models in production.\n\n\n"; | ||
print "<p align=\"center\">\n"; | ||
print "<img src=\"https://contributors-img.web.app/image?repo=radicalbit/radicalbit-ai-monitoring\" width = \"500\"/>\n"; | ||
print "</p>\n\n\n"; | ||
print "Contributors (ordered by first contribution.)\n"; | ||
print "-------------------------------------\n"; | ||
print "[Full List of Contributors](https://github.com/radicalbit/radicalbit-ai-monitoring/graphs/contributors)\n\n"; | ||
print @authors, "\n"; | ||
print " "; | ||
print "#### Generated by tools/update-authors.sh.\n"; | ||
} | ||
' > AUTHORS.md |