We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae2cf43 commit 7344b0eCopy full SHA for 7344b0e
.github/workflows/gh_statistics_bot.yml
@@ -187,7 +187,7 @@ jobs:
187
188
// Commit charts to repository
189
async function commitChartsToRepo(monthlyData, targetBranch) {
190
- const commits = monthlyData.map(d => d.stats?.totalCommitsAllBranches || 0);
+ const commits = monthlyData.map(d => d.stats?.totalCommitsAllBranches || d.stats?.totalCommits || 0);
191
const linesAdded = monthlyData.map(d => d.stats?.linesAdded || 0);
192
const prsOpened = monthlyData.map(d => d.prStats?.opened || 0);
193
0 commit comments