Skip to content

Commit

Permalink
fix: commit counts (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
aayush2622 authored Nov 5, 2024
1 parent 7ec889a commit ffd9fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:
echo "$top_contributors"
# Get commit count for this contributor on the dev branch
branch_commit_count=$(git rev-list --count dev --author="$login")
branch_commit_count=$(git log --author="$login" --author="$name" --oneline | awk '!seen[$0]++' | wc -l)
# Debug: Print recent_commit_counts
echo "Debug: recent_commit_counts contents:"
Expand Down

0 comments on commit ffd9fec

Please sign in to comment.