We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa4d9e5 commit b039a4bCopy full SHA for b039a4b
1 file changed
lib/github.ts
@@ -61,7 +61,7 @@ export async function createCommit(
61
let currentBaseTree = args.parents[0]
62
for (let i = 0; i < commitTreeBlobs.length; i += chunkSize) {
63
const chunk = commitTreeBlobs.slice(i, i + chunkSize)
64
- console.log(`Creating commit tree (${i + chunk.length} of ${commitTreeBlobs.length})...`)
+ console.log(`Creating commit tree (${i + chunk.length} of ${commitTreeBlobs.length} blob(s))...`)
65
currentBaseTree = await octokit.rest.git.createTree({
66
...repository,
67
base_tree: currentBaseTree,
0 commit comments