File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ jobs:
142142 done < <(echo "$COMMIT_LOG" | sed 's/%0A/\n/g' | grep -oP '(?<=~)[^[]*' | sort | uniq -c | sort -rn)
143143
144144 echo "Debug: Fetching contributors from GitHub"
145- contributors=$(curl -s "https://api.github.com/repos/${{ github.repository }}/contributors")
145+ contributors=$(curl -s "https://api.github.com/repos/${{ github.repository }}/contributors" | jq 'map(select(.login != "dependabot[bot]"))' )
146146 echo "Debug: Contributors response:"
147147 echo "$contributors"
148148
@@ -153,7 +153,7 @@ jobs:
153153 echo "$count|$login"
154154 done | sort -rn | cut -d'|' -f2)
155155
156- developers=""
156+ developers=""
157157 committers_count=0
158158 max_commits=0
159159 top_contributor=""
You can’t perform that action at this time.
0 commit comments