Skip to content

Commit 39327b3

Browse files
committed
lol
1 parent 77a863d commit 39327b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/gh_statistics_bot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
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,

0 commit comments

Comments
 (0)