We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd5e97 commit f8ddd0dCopy full SHA for f8ddd0d
packages/cli/index.ts
@@ -519,11 +519,20 @@ const main = defineCommand({
519
520
const debug = laterRes.debug;
521
522
+ // Visible warning in logs
523
+ core.warning(`🔍 Debug Data:\n${JSON.stringify(debug, null, 2)}`);
524
+
525
+ // Try Job Summary with manual HTML
526
await core.summary
- .addDetails(
- "Debug Data",
- `\`\`\`json\n${JSON.stringify(debug, null, 2)}\n\`\`\``
- )
527
+ .addRaw(`
528
+<details>
529
+<summary>🔍 Backend Debug Data</summary>
530
531
+\`\`\`json
532
+${JSON.stringify(debug, null, 2)}
533
+\`\`\`
534
535
+</details>`)
536
.write();
537
538
console.warn("\n");
0 commit comments