multipart tree creation
This commit is contained in:
parent
633a5a9752
commit
6c4c6cfe81
2 changed files with 29 additions and 8 deletions
11
dist/index.js
vendored
11
dist/index.js
vendored
|
@ -1362,9 +1362,16 @@ class GitHubHelper {
|
||||||
type: 'blob'
|
type: 'blob'
|
||||||
};
|
};
|
||||||
})));
|
})));
|
||||||
|
const chunkSize = 100;
|
||||||
|
const chunkedTreeObjects = Array.from({ length: Math.ceil(treeObjects.length / chunkSize) }, (_, i) => treeObjects.slice(i * chunkSize, i * chunkSize + chunkSize));
|
||||||
core.info(`Creating tree for local commit ${commit.sha}`);
|
core.info(`Creating tree for local commit ${commit.sha}`);
|
||||||
const { data: tree } = yield this.octokit.rest.git.createTree(Object.assign(Object.assign({}, repository), { base_tree: parentCommit.tree, tree: treeObjects }));
|
for (let i = 0; i < chunkedTreeObjects.length; i++) {
|
||||||
treeSha = tree.sha;
|
const { data: tree } = yield this.octokit.rest.git.createTree(Object.assign(Object.assign({}, repository), { base_tree: treeSha, tree: chunkedTreeObjects[i] }));
|
||||||
|
treeSha = tree.sha;
|
||||||
|
if (chunkedTreeObjects.length > 1) {
|
||||||
|
core.info(`Created tree ${treeSha} of multipart tree (${i + 1} of ${chunkedTreeObjects.length})`);
|
||||||
|
}
|
||||||
|
}
|
||||||
core.info(`Created tree ${treeSha} for local commit ${commit.sha}`);
|
core.info(`Created tree ${treeSha} for local commit ${commit.sha}`);
|
||||||
}
|
}
|
||||||
const { data: remoteCommit } = yield this.octokit.rest.git.createCommit(Object.assign(Object.assign({}, repository), { parents: [parentCommit.sha], tree: treeSha, message: `${commit.subject}\n\n${commit.body}` }));
|
const { data: remoteCommit } = yield this.octokit.rest.git.createCommit(Object.assign(Object.assign({}, repository), { parents: [parentCommit.sha], tree: treeSha, message: `${commit.subject}\n\n${commit.body}` }));
|
||||||
|
|
|
@ -283,13 +283,27 @@ export class GitHubHelper {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const chunkSize = 100
|
||||||
|
const chunkedTreeObjects: TreeObject[][] = Array.from(
|
||||||
|
{length: Math.ceil(treeObjects.length / chunkSize)},
|
||||||
|
(_, i) => treeObjects.slice(i * chunkSize, i * chunkSize + chunkSize)
|
||||||
|
)
|
||||||
|
|
||||||
core.info(`Creating tree for local commit ${commit.sha}`)
|
core.info(`Creating tree for local commit ${commit.sha}`)
|
||||||
const {data: tree} = await this.octokit.rest.git.createTree({
|
for (let i = 0; i < chunkedTreeObjects.length; i++) {
|
||||||
...repository,
|
const {data: tree} = await this.octokit.rest.git.createTree({
|
||||||
base_tree: parentCommit.tree,
|
...repository,
|
||||||
tree: treeObjects
|
base_tree: treeSha,
|
||||||
})
|
tree: chunkedTreeObjects[i]
|
||||||
treeSha = tree.sha
|
})
|
||||||
|
treeSha = tree.sha
|
||||||
|
if (chunkedTreeObjects.length > 1) {
|
||||||
|
core.info(
|
||||||
|
`Created tree ${treeSha} of multipart tree (${i + 1} of ${chunkedTreeObjects.length})`
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
core.info(`Created tree ${treeSha} for local commit ${commit.sha}`)
|
core.info(`Created tree ${treeSha} for local commit ${commit.sha}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue