Merge staging-next-26.05 into staging-26.05

This commit is contained in:
nixpkgs-ci[bot]
2026-09-02 00:56:26 +00:00
committed by GitHub

View File

@@ -290,7 +290,7 @@ export default async ({ github, context, core, dry, cherryPicks }) => {
// that's too long. We think this is unlikely to happen, and so don't deal with it explicitly.
const truncated = []
let total_length = 0
for (line of diff) {
for (const line of diff) {
total_length += line.length
if (total_length > 10000) {
truncated.push('', '[...truncated...]')