Skip to content

Commit

Permalink
chore: add authors.md and its related automation script
Browse files Browse the repository at this point in the history
  • Loading branch information
bigmoby committed Jul 1, 2024
1 parent 7454694 commit 5697ce4
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
34 changes: 34 additions & 0 deletions AUTHORS.md
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.
32 changes: 32 additions & 0 deletions tools/update-authors.sh
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

0 comments on commit 5697ce4

Please sign in to comment.