We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f407c80 commit 4cab80aCopy full SHA for 4cab80a
.github/workflows/src/exec.js
@@ -14,6 +14,9 @@ export async function execRoot(command, core) {
14
// TODO: Handle errors
15
const result = await exec(command, {
16
cwd: process.env.GITHUB_WORKSPACE,
17
+ // Default is 1024 * 1024, which is too small for some git commands returning many entities or large file content.
18
+ // To support "git show", should be larger than the largest swagger file in the repo (2.5 MB as of 2/28/2025).
19
+ maxBuffer: 16 * 1024 * 1024
20
});
21
22
core.debug(`stdout: '${result.stdout}'`);
0 commit comments