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 9999 const allCommitsSet = new Set();
100100 const allAuthors = new Set();
101101
102- for (const branch of branches.slice(0, 20 )) { // Limit to first 20 branches to avoid rate limits
102+ for (const branch of branches.slice(0, 200 )) { // Limit to first 20 branches to avoid rate limits
103103 try {
104104 console.log(`Checking branch: ${branch.name}`);
105105 const branchCommits = await github.paginate(github.rest.repos.listCommits, {
@@ -134,7 +134,7 @@ jobs:
134134 let totalDeletions = 0;
135135 let mainFileChanges = 0;
136136
137- for (const commit of mainBranchCommits.slice(0, 30 )) {
137+ for (const commit of mainBranchCommits.slice(0, 100 )) {
138138 try {
139139 const commitDetail = await github.rest.repos.getCommit({
140140 owner: context.repo.owner,
You can’t perform that action at this time.
0 commit comments