1
0
Fork 0

summary: increase limit to 1MiB

pull/1014/head
Rob Herley 2022-04-20 19:55:54 +00:00 committed by GitHub
parent edee7cde32
commit ed87cc6ce3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import {constants, promises} from 'fs'
const {access, appendFile, stat, writeFile} = promises const {access, appendFile, stat, writeFile} = promises
// The runner & server will also block any upload greater than this size // The runner & server will also block any upload greater than this size
export const SUMMARY_LIMIT_BYTES = 128 * 1024 export const SUMMARY_LIMIT_BYTES = 1024 * 1024 // 1MiB
export const SUMMARY_ENV_VAR = 'GITHUB_STEP_SUMMARY' export const SUMMARY_ENV_VAR = 'GITHUB_STEP_SUMMARY'
export const SUMMARY_DOCS_URL = export const SUMMARY_DOCS_URL =
'https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-markdown-summary' 'https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-markdown-summary'
@ -154,7 +154,7 @@ class MarkdownSummary {
this.emptyBuffer() this.emptyBuffer()
const limitK = SUMMARY_LIMIT_BYTES / 1024 const limitK = SUMMARY_LIMIT_BYTES / 1024
throw new Error( throw new Error(
`Aborting write to summary file. File size would exceed limit of ${limitK}k. For more information see: ${SUMMARY_DOCS_URL}` `Aborting write to summary file. File size would exceed limit of ${limitK}KiB. For more information see: ${SUMMARY_DOCS_URL}`
) )
} }