Skip to content

Commit

Permalink
Merge branch 'main' of github.com:radicalbit/radicalbit-ai-monitoring…
Browse files Browse the repository at this point in the history
… into feature/ROS-310-add-latest-current-and-reference-job-status-to-modelout
  • Loading branch information
dtria91 committed Jul 1, 2024
2 parents bb3b782 + 081e77d commit 664ff4d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 29 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/authors.yaml

This file was deleted.

1 change: 0 additions & 1 deletion AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ Contributors (ordered by first contribution.)
- rivamarco (<[email protected]>)
- d-croci (<[email protected]>)
- cybermarinella (<[email protected]>)
- rivamarco (<[email protected]>)
- BigMoby (<[email protected]>)

#### Generated by tools/update-authors.sh.
11 changes: 7 additions & 4 deletions tools/update-authors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

git log --reverse --format='%aN (<%aE>)' | perl -we '
BEGIN {
%seen_names = ();
%seen_emails = ();
}
while (<>) {
Expand All @@ -11,10 +12,12 @@ while (<>) {
next if /(devops\@radicalbit.ai)/;
next if /(devops\@users.noreply.github.com)/;
# Extract the email
if ($line =~ /<(.+?)>/) {
my $email = $1;
# Skip if the email has been seen
# Extract the name before the email and convert to lowercase
if ($line =~ /^(.+?) \((.+)\)$/) {
my $name = lc($1);
my $email = $2;
# Skip if the name or email has been seen (case insensitive for name)
next if $seen_names{$name}++;
next if $seen_emails{$email}++;
}
Expand Down

0 comments on commit 664ff4d

Please sign in to comment.