diff --git a/.github/workflows/ai-moderator.lock.yml b/.github/workflows/ai-moderator.lock.yml
index 294e9ece5d..e1e116a408 100644
--- a/.github/workflows/ai-moderator.lock.yml
+++ b/.github/workflows/ai-moderator.lock.yml
@@ -3081,22 +3081,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6971,7 +6971,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6981,7 +6981,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6990,7 +6990,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/archie.lock.yml b/.github/workflows/archie.lock.yml
index e973f3251b..3b7267bf27 100644
--- a/.github/workflows/archie.lock.yml
+++ b/.github/workflows/archie.lock.yml
@@ -1641,7 +1641,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -3720,22 +3720,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7652,7 +7652,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7662,7 +7662,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7671,7 +7671,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/artifacts-summary.lock.yml b/.github/workflows/artifacts-summary.lock.yml
index d1483c3b85..34735defaa 100644
--- a/.github/workflows/artifacts-summary.lock.yml
+++ b/.github/workflows/artifacts-summary.lock.yml
@@ -2082,22 +2082,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5945,7 +5945,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5955,7 +5955,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5964,7 +5964,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/audit-workflows.lock.yml b/.github/workflows/audit-workflows.lock.yml
index 9c01f51e4c..f7bbc75fc5 100644
--- a/.github/workflows/audit-workflows.lock.yml
+++ b/.github/workflows/audit-workflows.lock.yml
@@ -2895,22 +2895,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6788,7 +6788,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6798,7 +6798,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6807,7 +6807,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/blog-auditor.lock.yml b/.github/workflows/blog-auditor.lock.yml
index bbbf33ef5b..44e40321c0 100644
--- a/.github/workflows/blog-auditor.lock.yml
+++ b/.github/workflows/blog-auditor.lock.yml
@@ -2403,22 +2403,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5833,7 +5833,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5843,7 +5843,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5852,7 +5852,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/brave.lock.yml b/.github/workflows/brave.lock.yml
index 31f1a50406..08e2814156 100644
--- a/.github/workflows/brave.lock.yml
+++ b/.github/workflows/brave.lock.yml
@@ -1538,7 +1538,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -3617,22 +3617,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7442,7 +7442,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7452,7 +7452,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7461,7 +7461,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/breaking-change-checker.lock.yml b/.github/workflows/breaking-change-checker.lock.yml
index 46dc5d65b5..3ea8502056 100644
--- a/.github/workflows/breaking-change-checker.lock.yml
+++ b/.github/workflows/breaking-change-checker.lock.yml
@@ -2129,22 +2129,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6019,7 +6019,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6029,7 +6029,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6038,7 +6038,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/changeset.lock.yml b/.github/workflows/changeset.lock.yml
index 4095b28e23..58bcb70aa6 100644
--- a/.github/workflows/changeset.lock.yml
+++ b/.github/workflows/changeset.lock.yml
@@ -3032,22 +3032,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6479,7 +6479,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6489,7 +6489,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6498,7 +6498,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/ci-coach.lock.yml b/.github/workflows/ci-coach.lock.yml
index 504ed77673..d5f3bb892d 100644
--- a/.github/workflows/ci-coach.lock.yml
+++ b/.github/workflows/ci-coach.lock.yml
@@ -2740,22 +2740,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7235,7 +7235,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7245,7 +7245,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7254,7 +7254,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/ci-doctor.lock.yml b/.github/workflows/ci-doctor.lock.yml
index 5804a9d463..8a1518456c 100644
--- a/.github/workflows/ci-doctor.lock.yml
+++ b/.github/workflows/ci-doctor.lock.yml
@@ -828,7 +828,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -2990,22 +2990,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6893,7 +6893,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6903,7 +6903,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6912,7 +6912,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/cli-consistency-checker.lock.yml b/.github/workflows/cli-consistency-checker.lock.yml
index 7b39b2db8e..b5927d2d21 100644
--- a/.github/workflows/cli-consistency-checker.lock.yml
+++ b/.github/workflows/cli-consistency-checker.lock.yml
@@ -2140,22 +2140,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6014,7 +6014,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6024,7 +6024,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6033,7 +6033,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/cli-version-checker.lock.yml b/.github/workflows/cli-version-checker.lock.yml
index 82853b5d7e..8fa67b921a 100644
--- a/.github/workflows/cli-version-checker.lock.yml
+++ b/.github/workflows/cli-version-checker.lock.yml
@@ -2390,22 +2390,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5787,7 +5787,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5797,7 +5797,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5806,7 +5806,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/cloclo.lock.yml b/.github/workflows/cloclo.lock.yml
index a9f5c24f48..76fd54d24d 100644
--- a/.github/workflows/cloclo.lock.yml
+++ b/.github/workflows/cloclo.lock.yml
@@ -1749,7 +1749,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -4038,22 +4038,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7479,7 +7479,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7489,7 +7489,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7498,7 +7498,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/close-old-discussions.lock.yml b/.github/workflows/close-old-discussions.lock.yml
index 128f132e86..3cd54187cc 100644
--- a/.github/workflows/close-old-discussions.lock.yml
+++ b/.github/workflows/close-old-discussions.lock.yml
@@ -2275,22 +2275,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5996,7 +5996,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6006,7 +6006,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6015,7 +6015,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/commit-changes-analyzer.lock.yml b/.github/workflows/commit-changes-analyzer.lock.yml
index 79c4b01d8e..18ef8d9096 100644
--- a/.github/workflows/commit-changes-analyzer.lock.yml
+++ b/.github/workflows/commit-changes-analyzer.lock.yml
@@ -2347,22 +2347,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5711,7 +5711,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5721,7 +5721,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5730,7 +5730,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/copilot-agent-analysis.lock.yml b/.github/workflows/copilot-agent-analysis.lock.yml
index a66924d85f..b49ff6dc6e 100644
--- a/.github/workflows/copilot-agent-analysis.lock.yml
+++ b/.github/workflows/copilot-agent-analysis.lock.yml
@@ -2698,22 +2698,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6463,7 +6463,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6473,7 +6473,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6482,7 +6482,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/copilot-pr-merged-report.lock.yml b/.github/workflows/copilot-pr-merged-report.lock.yml
index 7a938366a6..e11a9324d1 100644
--- a/.github/workflows/copilot-pr-merged-report.lock.yml
+++ b/.github/workflows/copilot-pr-merged-report.lock.yml
@@ -3557,22 +3557,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7462,7 +7462,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7472,7 +7472,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7481,7 +7481,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/copilot-pr-nlp-analysis.lock.yml b/.github/workflows/copilot-pr-nlp-analysis.lock.yml
index b1959f31a8..3adac4fccd 100644
--- a/.github/workflows/copilot-pr-nlp-analysis.lock.yml
+++ b/.github/workflows/copilot-pr-nlp-analysis.lock.yml
@@ -2924,22 +2924,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7569,7 +7569,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7579,7 +7579,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7588,7 +7588,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/copilot-pr-prompt-analysis.lock.yml b/.github/workflows/copilot-pr-prompt-analysis.lock.yml
index 3cf8e8cbfa..23cb472a23 100644
--- a/.github/workflows/copilot-pr-prompt-analysis.lock.yml
+++ b/.github/workflows/copilot-pr-prompt-analysis.lock.yml
@@ -2422,22 +2422,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6584,7 +6584,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6594,7 +6594,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6603,7 +6603,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/copilot-session-insights.lock.yml b/.github/workflows/copilot-session-insights.lock.yml
index 1b5edc9602..97d23d0e7c 100644
--- a/.github/workflows/copilot-session-insights.lock.yml
+++ b/.github/workflows/copilot-session-insights.lock.yml
@@ -3431,22 +3431,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7881,7 +7881,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7891,7 +7891,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7900,7 +7900,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/craft.lock.yml b/.github/workflows/craft.lock.yml
index e5f3c63028..68764284b2 100644
--- a/.github/workflows/craft.lock.yml
+++ b/.github/workflows/craft.lock.yml
@@ -1696,7 +1696,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -3809,22 +3809,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7794,7 +7794,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7804,7 +7804,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7813,7 +7813,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-assign-issue-to-user.lock.yml b/.github/workflows/daily-assign-issue-to-user.lock.yml
index 9956cabf3e..193286baa1 100644
--- a/.github/workflows/daily-assign-issue-to-user.lock.yml
+++ b/.github/workflows/daily-assign-issue-to-user.lock.yml
@@ -635,7 +635,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -2746,22 +2746,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6946,7 +6946,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6956,7 +6956,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6965,7 +6965,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-code-metrics.lock.yml b/.github/workflows/daily-code-metrics.lock.yml
index 60f03f6dc3..05ca35a746 100644
--- a/.github/workflows/daily-code-metrics.lock.yml
+++ b/.github/workflows/daily-code-metrics.lock.yml
@@ -2932,22 +2932,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6920,7 +6920,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6930,7 +6930,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6939,7 +6939,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-copilot-token-report.lock.yml b/.github/workflows/daily-copilot-token-report.lock.yml
index c46e99bef6..5338c6dc7a 100644
--- a/.github/workflows/daily-copilot-token-report.lock.yml
+++ b/.github/workflows/daily-copilot-token-report.lock.yml
@@ -2994,22 +2994,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7740,7 +7740,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7750,7 +7750,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7759,7 +7759,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-doc-updater.lock.yml b/.github/workflows/daily-doc-updater.lock.yml
index d9d508d7ec..5f0bb7cc08 100644
--- a/.github/workflows/daily-doc-updater.lock.yml
+++ b/.github/workflows/daily-doc-updater.lock.yml
@@ -2244,22 +2244,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5523,7 +5523,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5533,7 +5533,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5542,7 +5542,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-fact.lock.yml b/.github/workflows/daily-fact.lock.yml
index eb7c92d324..0330f34470 100644
--- a/.github/workflows/daily-fact.lock.yml
+++ b/.github/workflows/daily-fact.lock.yml
@@ -698,7 +698,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -2737,22 +2737,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5987,7 +5987,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5997,7 +5997,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6006,7 +6006,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-file-diet.lock.yml b/.github/workflows/daily-file-diet.lock.yml
index ffedaa3b05..103c2b0a93 100644
--- a/.github/workflows/daily-file-diet.lock.yml
+++ b/.github/workflows/daily-file-diet.lock.yml
@@ -2278,22 +2278,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5784,7 +5784,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5794,7 +5794,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5803,7 +5803,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-firewall-report.lock.yml b/.github/workflows/daily-firewall-report.lock.yml
index bf7d0c0816..5f1f36ac85 100644
--- a/.github/workflows/daily-firewall-report.lock.yml
+++ b/.github/workflows/daily-firewall-report.lock.yml
@@ -2705,22 +2705,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7035,7 +7035,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7045,7 +7045,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7054,7 +7054,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-issues-report.lock.yml b/.github/workflows/daily-issues-report.lock.yml
index a8f870d8a3..28d5e18902 100644
--- a/.github/workflows/daily-issues-report.lock.yml
+++ b/.github/workflows/daily-issues-report.lock.yml
@@ -3072,22 +3072,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7745,7 +7745,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7755,7 +7755,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7764,7 +7764,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-malicious-code-scan.lock.yml b/.github/workflows/daily-malicious-code-scan.lock.yml
index 57e11e62f2..057e20d315 100644
--- a/.github/workflows/daily-malicious-code-scan.lock.yml
+++ b/.github/workflows/daily-malicious-code-scan.lock.yml
@@ -2263,22 +2263,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6253,7 +6253,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6263,7 +6263,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6272,7 +6272,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-multi-device-docs-tester.lock.yml b/.github/workflows/daily-multi-device-docs-tester.lock.yml
index f21e3881a7..5335fcbd01 100644
--- a/.github/workflows/daily-multi-device-docs-tester.lock.yml
+++ b/.github/workflows/daily-multi-device-docs-tester.lock.yml
@@ -2223,22 +2223,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5428,7 +5428,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5438,7 +5438,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5447,7 +5447,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-news.lock.yml b/.github/workflows/daily-news.lock.yml
index 675f07b886..e42097e64c 100644
--- a/.github/workflows/daily-news.lock.yml
+++ b/.github/workflows/daily-news.lock.yml
@@ -3036,22 +3036,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7499,7 +7499,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7509,7 +7509,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7518,7 +7518,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-performance-summary.lock.yml b/.github/workflows/daily-performance-summary.lock.yml
index 14ceaee9a9..5be2417b12 100644
--- a/.github/workflows/daily-performance-summary.lock.yml
+++ b/.github/workflows/daily-performance-summary.lock.yml
@@ -4530,22 +4530,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -8985,7 +8985,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -8995,7 +8995,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -9004,7 +9004,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-repo-chronicle.lock.yml b/.github/workflows/daily-repo-chronicle.lock.yml
index 87a3084ba3..01e41f341e 100644
--- a/.github/workflows/daily-repo-chronicle.lock.yml
+++ b/.github/workflows/daily-repo-chronicle.lock.yml
@@ -2698,22 +2698,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7173,7 +7173,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7183,7 +7183,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7192,7 +7192,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/daily-team-status.lock.yml b/.github/workflows/daily-team-status.lock.yml
index 46a80efe69..057d0f1032 100644
--- a/.github/workflows/daily-team-status.lock.yml
+++ b/.github/workflows/daily-team-status.lock.yml
@@ -431,7 +431,7 @@ jobs:
which awf
awf --version
- name: Install GitHub Copilot CLI
- run: npm install -g @github/copilot@0.0.367
+ run: npm install -g @github/copilot@0.0.368
- name: Downloading container images
run: |
set -e
@@ -2008,7 +2008,7 @@ jobs:
engine_name: "GitHub Copilot CLI",
model: process.env.GH_AW_MODEL_AGENT_COPILOT || "",
version: "",
- agent_version: "0.0.367",
+ agent_version: "0.0.368",
workflow_name: "Daily Team Status",
experimental: false,
supports_tools_allowlist: true,
@@ -2059,22 +2059,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -2558,7 +2558,7 @@ jobs:
run: |
set -o pipefail
sudo -E awf --env-all --container-workdir "${GITHUB_WORKSPACE}" --mount /tmp:/tmp:rw --mount "${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE}:rw" --mount /usr/bin/date:/usr/bin/date:ro --mount /usr/bin/gh:/usr/bin/gh:ro --mount /usr/bin/yq:/usr/bin/yq:ro --allow-domains api.business.githubcopilot.com,api.enterprise.githubcopilot.com,api.github.com,api.individual.githubcopilot.com,github.com,host.docker.internal,raw.githubusercontent.com,registry.npmjs.org --log-level info --proxy-logs-dir /tmp/gh-aw/sandbox/firewall/logs \
- -- npx -y @github/copilot@0.0.367 --add-dir /tmp/gh-aw/ --log-level all --log-dir /tmp/gh-aw/sandbox/agent/logs/ --add-dir "${GITHUB_WORKSPACE}" --disable-builtin-mcps --allow-tool github --allow-tool safeoutputs --prompt "$(cat /tmp/gh-aw/aw-prompts/prompt.txt)"${GH_AW_MODEL_AGENT_COPILOT:+ --model "$GH_AW_MODEL_AGENT_COPILOT"} \
+ -- npx -y @github/copilot@0.0.368 --add-dir /tmp/gh-aw/ --log-level all --log-dir /tmp/gh-aw/sandbox/agent/logs/ --add-dir "${GITHUB_WORKSPACE}" --disable-builtin-mcps --allow-tool github --allow-tool safeoutputs --prompt "$(cat /tmp/gh-aw/aw-prompts/prompt.txt)"${GH_AW_MODEL_AGENT_COPILOT:+ --model "$GH_AW_MODEL_AGENT_COPILOT"} \
2>&1 | tee /tmp/gh-aw/agent-stdio.log
env:
COPILOT_AGENT_RUNNER_TYPE: STANDALONE
@@ -5786,7 +5786,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5796,7 +5796,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5805,7 +5805,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
@@ -6976,7 +6976,7 @@ jobs:
node-version: '24'
package-manager-cache: false
- name: Install GitHub Copilot CLI
- run: npm install -g @github/copilot@0.0.367
+ run: npm install -g @github/copilot@0.0.368
- name: Execute GitHub Copilot CLI
id: agentic_execution
# Copilot CLI tool arguments (sorted):
diff --git a/.github/workflows/daily-workflow-updater.lock.yml b/.github/workflows/daily-workflow-updater.lock.yml
index 59b7b49bdb..a1c00222a7 100644
--- a/.github/workflows/daily-workflow-updater.lock.yml
+++ b/.github/workflows/daily-workflow-updater.lock.yml
@@ -2124,22 +2124,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5953,7 +5953,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5963,7 +5963,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5972,7 +5972,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/deep-report.lock.yml b/.github/workflows/deep-report.lock.yml
index 202ae7828b..00a58475ee 100644
--- a/.github/workflows/deep-report.lock.yml
+++ b/.github/workflows/deep-report.lock.yml
@@ -2556,22 +2556,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6257,7 +6257,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6267,7 +6267,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6276,7 +6276,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/dependabot-go-checker.lock.yml b/.github/workflows/dependabot-go-checker.lock.yml
index 57d8159677..563ea4b52c 100644
--- a/.github/workflows/dependabot-go-checker.lock.yml
+++ b/.github/workflows/dependabot-go-checker.lock.yml
@@ -2443,22 +2443,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6627,7 +6627,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6637,7 +6637,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6646,7 +6646,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/dev-hawk.lock.yml b/.github/workflows/dev-hawk.lock.yml
index d0335c4893..13369fc506 100644
--- a/.github/workflows/dev-hawk.lock.yml
+++ b/.github/workflows/dev-hawk.lock.yml
@@ -754,7 +754,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -2839,22 +2839,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6665,7 +6665,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6675,7 +6675,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6684,7 +6684,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/dev.lock.yml b/.github/workflows/dev.lock.yml
index 254894a4af..1b8f9f019e 100644
--- a/.github/workflows/dev.lock.yml
+++ b/.github/workflows/dev.lock.yml
@@ -3254,22 +3254,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6648,7 +6648,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6658,7 +6658,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6667,7 +6667,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/developer-docs-consolidator.lock.yml b/.github/workflows/developer-docs-consolidator.lock.yml
index 79f9ca7f07..c44ed211c6 100644
--- a/.github/workflows/developer-docs-consolidator.lock.yml
+++ b/.github/workflows/developer-docs-consolidator.lock.yml
@@ -2831,22 +2831,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6673,7 +6673,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6683,7 +6683,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6692,7 +6692,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/dictation-prompt.lock.yml b/.github/workflows/dictation-prompt.lock.yml
index 370a8166b9..dcd42eeaf7 100644
--- a/.github/workflows/dictation-prompt.lock.yml
+++ b/.github/workflows/dictation-prompt.lock.yml
@@ -2107,22 +2107,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5894,7 +5894,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5904,7 +5904,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5913,7 +5913,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/docs-noob-tester.lock.yml b/.github/workflows/docs-noob-tester.lock.yml
index 04e5808b99..802862b1cd 100644
--- a/.github/workflows/docs-noob-tester.lock.yml
+++ b/.github/workflows/docs-noob-tester.lock.yml
@@ -2147,22 +2147,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6034,7 +6034,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6044,7 +6044,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6053,7 +6053,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/duplicate-code-detector.lock.yml b/.github/workflows/duplicate-code-detector.lock.yml
index 2bcf37d4e5..5b5d061d71 100644
--- a/.github/workflows/duplicate-code-detector.lock.yml
+++ b/.github/workflows/duplicate-code-detector.lock.yml
@@ -2182,22 +2182,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5602,7 +5602,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5612,7 +5612,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5621,7 +5621,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/example-permissions-warning.lock.yml b/.github/workflows/example-permissions-warning.lock.yml
index 66c51849d5..5b8d756859 100644
--- a/.github/workflows/example-permissions-warning.lock.yml
+++ b/.github/workflows/example-permissions-warning.lock.yml
@@ -392,22 +392,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
diff --git a/.github/workflows/example-workflow-analyzer.lock.yml b/.github/workflows/example-workflow-analyzer.lock.yml
index e279dacf75..24f741a53d 100644
--- a/.github/workflows/example-workflow-analyzer.lock.yml
+++ b/.github/workflows/example-workflow-analyzer.lock.yml
@@ -2160,22 +2160,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5225,7 +5225,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5235,7 +5235,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5244,7 +5244,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/firewall-escape.lock.yml b/.github/workflows/firewall-escape.lock.yml
index edc51df497..ec4f349fd3 100644
--- a/.github/workflows/firewall-escape.lock.yml
+++ b/.github/workflows/firewall-escape.lock.yml
@@ -638,22 +638,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
diff --git a/.github/workflows/firewall.lock.yml b/.github/workflows/firewall.lock.yml
index 2c2a14a02d..480675f4cb 100644
--- a/.github/workflows/firewall.lock.yml
+++ b/.github/workflows/firewall.lock.yml
@@ -424,22 +424,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
diff --git a/.github/workflows/github-mcp-structural-analysis.lock.yml b/.github/workflows/github-mcp-structural-analysis.lock.yml
index d492599170..83f5f7a289 100644
--- a/.github/workflows/github-mcp-structural-analysis.lock.yml
+++ b/.github/workflows/github-mcp-structural-analysis.lock.yml
@@ -2787,22 +2787,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6599,7 +6599,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6609,7 +6609,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6618,7 +6618,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/github-mcp-tools-report.lock.yml b/.github/workflows/github-mcp-tools-report.lock.yml
index 1c8b160110..71968d1325 100644
--- a/.github/workflows/github-mcp-tools-report.lock.yml
+++ b/.github/workflows/github-mcp-tools-report.lock.yml
@@ -2660,22 +2660,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6376,7 +6376,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6386,7 +6386,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6395,7 +6395,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/glossary-maintainer.lock.yml b/.github/workflows/glossary-maintainer.lock.yml
index cfbcca5f9a..1748ceaab3 100644
--- a/.github/workflows/glossary-maintainer.lock.yml
+++ b/.github/workflows/glossary-maintainer.lock.yml
@@ -2622,22 +2622,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7059,7 +7059,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7069,7 +7069,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7078,7 +7078,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/go-fan.lock.yml b/.github/workflows/go-fan.lock.yml
index a5bfa59c13..0ea6199411 100644
--- a/.github/workflows/go-fan.lock.yml
+++ b/.github/workflows/go-fan.lock.yml
@@ -2472,22 +2472,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5942,7 +5942,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5952,7 +5952,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5961,7 +5961,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/go-logger.lock.yml b/.github/workflows/go-logger.lock.yml
index d047d4f7c0..bd2ac8236c 100644
--- a/.github/workflows/go-logger.lock.yml
+++ b/.github/workflows/go-logger.lock.yml
@@ -2369,22 +2369,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5680,7 +5680,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5690,7 +5690,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5699,7 +5699,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/go-pattern-detector.lock.yml b/.github/workflows/go-pattern-detector.lock.yml
index df37cbd73e..52f3476255 100644
--- a/.github/workflows/go-pattern-detector.lock.yml
+++ b/.github/workflows/go-pattern-detector.lock.yml
@@ -2243,22 +2243,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5451,7 +5451,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5461,7 +5461,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5470,7 +5470,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/grumpy-reviewer.lock.yml b/.github/workflows/grumpy-reviewer.lock.yml
index 6127c1e27a..2729fc1fad 100644
--- a/.github/workflows/grumpy-reviewer.lock.yml
+++ b/.github/workflows/grumpy-reviewer.lock.yml
@@ -1577,7 +1577,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -3726,22 +3726,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7599,7 +7599,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7609,7 +7609,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7618,7 +7618,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/hourly-ci-cleaner.lock.yml b/.github/workflows/hourly-ci-cleaner.lock.yml
index e989a172d7..6e9ae0fdd7 100644
--- a/.github/workflows/hourly-ci-cleaner.lock.yml
+++ b/.github/workflows/hourly-ci-cleaner.lock.yml
@@ -2320,22 +2320,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6372,7 +6372,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6382,7 +6382,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6391,7 +6391,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/instructions-janitor.lock.yml b/.github/workflows/instructions-janitor.lock.yml
index 8b7a7928b1..2eee1e2c29 100644
--- a/.github/workflows/instructions-janitor.lock.yml
+++ b/.github/workflows/instructions-janitor.lock.yml
@@ -2238,22 +2238,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5445,7 +5445,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5455,7 +5455,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5464,7 +5464,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/issue-arborist.lock.yml b/.github/workflows/issue-arborist.lock.yml
index 98391e505e..242f531608 100644
--- a/.github/workflows/issue-arborist.lock.yml
+++ b/.github/workflows/issue-arborist.lock.yml
@@ -2215,22 +2215,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5612,7 +5612,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5622,7 +5622,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5631,7 +5631,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/issue-classifier.lock.yml b/.github/workflows/issue-classifier.lock.yml
index 4ac9e94062..ef750ad717 100644
--- a/.github/workflows/issue-classifier.lock.yml
+++ b/.github/workflows/issue-classifier.lock.yml
@@ -3278,22 +3278,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5126,7 +5126,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5136,7 +5136,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5145,7 +5145,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/issue-monster.lock.yml b/.github/workflows/issue-monster.lock.yml
index 0905f42a9e..bd8f476e22 100644
--- a/.github/workflows/issue-monster.lock.yml
+++ b/.github/workflows/issue-monster.lock.yml
@@ -864,7 +864,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -2966,22 +2966,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7387,7 +7387,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7397,7 +7397,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7406,7 +7406,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/issue-triage-agent.lock.yml b/.github/workflows/issue-triage-agent.lock.yml
index 2a50cfbfdc..adb18a5cb9 100644
--- a/.github/workflows/issue-triage-agent.lock.yml
+++ b/.github/workflows/issue-triage-agent.lock.yml
@@ -2428,22 +2428,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6119,7 +6119,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6129,7 +6129,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6138,7 +6138,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/layout-spec-maintainer.lock.yml b/.github/workflows/layout-spec-maintainer.lock.yml
index 98ba733a5c..31f2c1cb01 100644
--- a/.github/workflows/layout-spec-maintainer.lock.yml
+++ b/.github/workflows/layout-spec-maintainer.lock.yml
@@ -2245,22 +2245,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6187,7 +6187,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6197,7 +6197,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6206,7 +6206,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/lockfile-stats.lock.yml b/.github/workflows/lockfile-stats.lock.yml
index 27aa3f0d69..cbe2701149 100644
--- a/.github/workflows/lockfile-stats.lock.yml
+++ b/.github/workflows/lockfile-stats.lock.yml
@@ -2464,22 +2464,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5951,7 +5951,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5961,7 +5961,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5970,7 +5970,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/mcp-inspector.lock.yml b/.github/workflows/mcp-inspector.lock.yml
index a1b912d602..392f5dac82 100644
--- a/.github/workflows/mcp-inspector.lock.yml
+++ b/.github/workflows/mcp-inspector.lock.yml
@@ -2543,22 +2543,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6567,7 +6567,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6577,7 +6577,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6586,7 +6586,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/mergefest.lock.yml b/.github/workflows/mergefest.lock.yml
index 8756d9889f..aa1a70bb54 100644
--- a/.github/workflows/mergefest.lock.yml
+++ b/.github/workflows/mergefest.lock.yml
@@ -2670,22 +2670,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6737,7 +6737,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6747,7 +6747,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6756,7 +6756,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/notion-issue-summary.lock.yml b/.github/workflows/notion-issue-summary.lock.yml
index 2d688306fa..d3d0b37b72 100644
--- a/.github/workflows/notion-issue-summary.lock.yml
+++ b/.github/workflows/notion-issue-summary.lock.yml
@@ -1917,22 +1917,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5622,7 +5622,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5632,7 +5632,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5641,7 +5641,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/org-health-report.lock.yml b/.github/workflows/org-health-report.lock.yml
index 334b227684..a80aaf6b2c 100644
--- a/.github/workflows/org-health-report.lock.yml
+++ b/.github/workflows/org-health-report.lock.yml
@@ -2905,22 +2905,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7432,7 +7432,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7442,7 +7442,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7451,7 +7451,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/pdf-summary.lock.yml b/.github/workflows/pdf-summary.lock.yml
index 9ee6244a43..7a7b8537f2 100644
--- a/.github/workflows/pdf-summary.lock.yml
+++ b/.github/workflows/pdf-summary.lock.yml
@@ -1629,7 +1629,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -3718,22 +3718,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7623,7 +7623,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7633,7 +7633,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7642,7 +7642,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/plan.lock.yml b/.github/workflows/plan.lock.yml
index cb1878ccff..e5da0b5a50 100644
--- a/.github/workflows/plan.lock.yml
+++ b/.github/workflows/plan.lock.yml
@@ -3010,22 +3010,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7277,7 +7277,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7287,7 +7287,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7296,7 +7296,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/poem-bot.lock.yml b/.github/workflows/poem-bot.lock.yml
index 2ce209efa9..582a316e60 100644
--- a/.github/workflows/poem-bot.lock.yml
+++ b/.github/workflows/poem-bot.lock.yml
@@ -1669,7 +1669,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -4843,22 +4843,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -8784,7 +8784,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -8794,7 +8794,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -8803,7 +8803,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/portfolio-analyst.lock.yml b/.github/workflows/portfolio-analyst.lock.yml
index 2b445ce136..4a07a4510b 100644
--- a/.github/workflows/portfolio-analyst.lock.yml
+++ b/.github/workflows/portfolio-analyst.lock.yml
@@ -2503,22 +2503,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6784,7 +6784,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6794,7 +6794,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6803,7 +6803,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/pr-nitpick-reviewer.lock.yml b/.github/workflows/pr-nitpick-reviewer.lock.yml
index 0fa4bf82a3..67490ae88e 100644
--- a/.github/workflows/pr-nitpick-reviewer.lock.yml
+++ b/.github/workflows/pr-nitpick-reviewer.lock.yml
@@ -1523,7 +1523,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -3725,22 +3725,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7908,7 +7908,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7918,7 +7918,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7927,7 +7927,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/prompt-clustering-analysis.lock.yml b/.github/workflows/prompt-clustering-analysis.lock.yml
index 4b88b8519a..5b9c4cab08 100644
--- a/.github/workflows/prompt-clustering-analysis.lock.yml
+++ b/.github/workflows/prompt-clustering-analysis.lock.yml
@@ -3155,22 +3155,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7228,7 +7228,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7238,7 +7238,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7247,7 +7247,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/python-data-charts.lock.yml b/.github/workflows/python-data-charts.lock.yml
index 4a78204680..ce0c667e62 100644
--- a/.github/workflows/python-data-charts.lock.yml
+++ b/.github/workflows/python-data-charts.lock.yml
@@ -3013,22 +3013,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7805,7 +7805,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7815,7 +7815,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7824,7 +7824,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/q.lock.yml b/.github/workflows/q.lock.yml
index 7bc897e187..3dfdecd691 100644
--- a/.github/workflows/q.lock.yml
+++ b/.github/workflows/q.lock.yml
@@ -1870,7 +1870,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -4057,22 +4057,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -8215,7 +8215,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -8225,7 +8225,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -8234,7 +8234,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/release.lock.yml b/.github/workflows/release.lock.yml
index 8eef11dd58..bc6b9c8c3d 100644
--- a/.github/workflows/release.lock.yml
+++ b/.github/workflows/release.lock.yml
@@ -2249,22 +2249,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6080,7 +6080,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6090,7 +6090,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6099,7 +6099,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/repo-tree-map.lock.yml b/.github/workflows/repo-tree-map.lock.yml
index ad1e38cc0d..34ee9795b9 100644
--- a/.github/workflows/repo-tree-map.lock.yml
+++ b/.github/workflows/repo-tree-map.lock.yml
@@ -2136,22 +2136,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5961,7 +5961,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5971,7 +5971,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5980,7 +5980,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/repository-quality-improver.lock.yml b/.github/workflows/repository-quality-improver.lock.yml
index 026f1e2c6f..1661137ba8 100644
--- a/.github/workflows/repository-quality-improver.lock.yml
+++ b/.github/workflows/repository-quality-improver.lock.yml
@@ -2597,22 +2597,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7005,7 +7005,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7015,7 +7015,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7024,7 +7024,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/research.lock.yml b/.github/workflows/research.lock.yml
index 007e687114..67ffdfca2b 100644
--- a/.github/workflows/research.lock.yml
+++ b/.github/workflows/research.lock.yml
@@ -2070,22 +2070,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5875,7 +5875,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5885,7 +5885,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5894,7 +5894,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/safe-output-health.lock.yml b/.github/workflows/safe-output-health.lock.yml
index 2331caf3ff..f6bd9fb112 100644
--- a/.github/workflows/safe-output-health.lock.yml
+++ b/.github/workflows/safe-output-health.lock.yml
@@ -2595,22 +2595,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6250,7 +6250,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6260,7 +6260,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6269,7 +6269,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/schema-consistency-checker.lock.yml b/.github/workflows/schema-consistency-checker.lock.yml
index 121c04cff9..911c9e45c0 100644
--- a/.github/workflows/schema-consistency-checker.lock.yml
+++ b/.github/workflows/schema-consistency-checker.lock.yml
@@ -2465,22 +2465,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5896,7 +5896,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5906,7 +5906,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5915,7 +5915,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/scout.lock.yml b/.github/workflows/scout.lock.yml
index f84ca7d872..a6b6a76a78 100644
--- a/.github/workflows/scout.lock.yml
+++ b/.github/workflows/scout.lock.yml
@@ -1828,7 +1828,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -4050,22 +4050,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7517,7 +7517,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7527,7 +7527,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7536,7 +7536,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/security-fix-pr.lock.yml b/.github/workflows/security-fix-pr.lock.yml
index 7e63dd6320..59d4189fe8 100644
--- a/.github/workflows/security-fix-pr.lock.yml
+++ b/.github/workflows/security-fix-pr.lock.yml
@@ -2216,22 +2216,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5453,7 +5453,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5463,7 +5463,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5472,7 +5472,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/semantic-function-refactor.lock.yml b/.github/workflows/semantic-function-refactor.lock.yml
index 0a6e5f292c..7cb15b453f 100644
--- a/.github/workflows/semantic-function-refactor.lock.yml
+++ b/.github/workflows/semantic-function-refactor.lock.yml
@@ -2623,22 +2623,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6357,7 +6357,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6367,7 +6367,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6376,7 +6376,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/smoke-claude.lock.yml b/.github/workflows/smoke-claude.lock.yml
index e7013a393e..218c881f4f 100644
--- a/.github/workflows/smoke-claude.lock.yml
+++ b/.github/workflows/smoke-claude.lock.yml
@@ -1228,7 +1228,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -4109,22 +4109,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7365,7 +7365,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7375,7 +7375,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7384,7 +7384,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/smoke-codex.lock.yml b/.github/workflows/smoke-codex.lock.yml
index e5908d0b16..fda8167c86 100644
--- a/.github/workflows/smoke-codex.lock.yml
+++ b/.github/workflows/smoke-codex.lock.yml
@@ -1112,7 +1112,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -3904,22 +3904,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7178,7 +7178,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7188,7 +7188,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7197,7 +7197,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/smoke-copilot-no-firewall.lock.yml b/.github/workflows/smoke-copilot-no-firewall.lock.yml
index 7b925d8204..b5b495a13a 100644
--- a/.github/workflows/smoke-copilot-no-firewall.lock.yml
+++ b/.github/workflows/smoke-copilot-no-firewall.lock.yml
@@ -1142,7 +1142,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -5284,22 +5284,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -9086,7 +9086,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -9096,7 +9096,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -9105,7 +9105,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/smoke-copilot-playwright.lock.yml b/.github/workflows/smoke-copilot-playwright.lock.yml
index 666b25ac9c..6f030623d7 100644
--- a/.github/workflows/smoke-copilot-playwright.lock.yml
+++ b/.github/workflows/smoke-copilot-playwright.lock.yml
@@ -1191,7 +1191,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -5275,22 +5275,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -9077,7 +9077,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -9087,7 +9087,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -9096,7 +9096,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/smoke-copilot-safe-inputs.lock.yml b/.github/workflows/smoke-copilot-safe-inputs.lock.yml
index e5840e7e54..59dd54e0ef 100644
--- a/.github/workflows/smoke-copilot-safe-inputs.lock.yml
+++ b/.github/workflows/smoke-copilot-safe-inputs.lock.yml
@@ -1119,7 +1119,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -5153,22 +5153,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -8783,7 +8783,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -8793,7 +8793,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -8802,7 +8802,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/smoke-copilot.lock.yml b/.github/workflows/smoke-copilot.lock.yml
index 729f0914da..fe8c43e309 100644
--- a/.github/workflows/smoke-copilot.lock.yml
+++ b/.github/workflows/smoke-copilot.lock.yml
@@ -1099,7 +1099,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -3848,22 +3848,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7608,7 +7608,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7618,7 +7618,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7627,7 +7627,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/smoke-detector.lock.yml b/.github/workflows/smoke-detector.lock.yml
index 889d67591e..24a6c25b49 100644
--- a/.github/workflows/smoke-detector.lock.yml
+++ b/.github/workflows/smoke-detector.lock.yml
@@ -1434,7 +1434,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -3697,22 +3697,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7109,7 +7109,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7119,7 +7119,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7128,7 +7128,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/smoke-srt-custom-config.lock.yml b/.github/workflows/smoke-srt-custom-config.lock.yml
index 5ddb891079..b63a1ccb36 100644
--- a/.github/workflows/smoke-srt-custom-config.lock.yml
+++ b/.github/workflows/smoke-srt-custom-config.lock.yml
@@ -432,22 +432,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
diff --git a/.github/workflows/smoke-srt.lock.yml b/.github/workflows/smoke-srt.lock.yml
index ee50da8cea..e6c1a34708 100644
--- a/.github/workflows/smoke-srt.lock.yml
+++ b/.github/workflows/smoke-srt.lock.yml
@@ -1930,22 +1930,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5469,7 +5469,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5479,7 +5479,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5488,7 +5488,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/spec-kit-execute.lock.yml b/.github/workflows/spec-kit-execute.lock.yml
index efab579e85..3c525e35fb 100644
--- a/.github/workflows/spec-kit-execute.lock.yml
+++ b/.github/workflows/spec-kit-execute.lock.yml
@@ -2391,22 +2391,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6515,7 +6515,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6525,7 +6525,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6534,7 +6534,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/spec-kit-executor.lock.yml b/.github/workflows/spec-kit-executor.lock.yml
index 3406623a8a..195b9676fc 100644
--- a/.github/workflows/spec-kit-executor.lock.yml
+++ b/.github/workflows/spec-kit-executor.lock.yml
@@ -2244,22 +2244,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6205,7 +6205,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6215,7 +6215,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6224,7 +6224,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/speckit-dispatcher.lock.yml b/.github/workflows/speckit-dispatcher.lock.yml
index 74fd1c300d..1df4ce20df 100644
--- a/.github/workflows/speckit-dispatcher.lock.yml
+++ b/.github/workflows/speckit-dispatcher.lock.yml
@@ -1848,7 +1848,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -4023,22 +4023,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -8113,7 +8113,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -8123,7 +8123,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -8132,7 +8132,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/stale-repo-identifier.lock.yml b/.github/workflows/stale-repo-identifier.lock.yml
index 4a92ceb3d9..2ddbf05a5d 100644
--- a/.github/workflows/stale-repo-identifier.lock.yml
+++ b/.github/workflows/stale-repo-identifier.lock.yml
@@ -2997,22 +2997,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7668,7 +7668,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7678,7 +7678,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7687,7 +7687,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/static-analysis-report.lock.yml b/.github/workflows/static-analysis-report.lock.yml
index 9d283e165d..348002c6e8 100644
--- a/.github/workflows/static-analysis-report.lock.yml
+++ b/.github/workflows/static-analysis-report.lock.yml
@@ -2504,22 +2504,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5989,7 +5989,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5999,7 +5999,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6008,7 +6008,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/super-linter.lock.yml b/.github/workflows/super-linter.lock.yml
index 31283474f0..c79e7f46f4 100644
--- a/.github/workflows/super-linter.lock.yml
+++ b/.github/workflows/super-linter.lock.yml
@@ -2246,22 +2246,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6183,7 +6183,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6193,7 +6193,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6202,7 +6202,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/technical-doc-writer.lock.yml b/.github/workflows/technical-doc-writer.lock.yml
index 0bf7678c5d..567814eed2 100644
--- a/.github/workflows/technical-doc-writer.lock.yml
+++ b/.github/workflows/technical-doc-writer.lock.yml
@@ -1088,7 +1088,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -3276,22 +3276,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7425,7 +7425,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7435,7 +7435,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7444,7 +7444,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/test-discussion-expires.lock.yml b/.github/workflows/test-discussion-expires.lock.yml
index d46b4ca82c..44c19df519 100644
--- a/.github/workflows/test-discussion-expires.lock.yml
+++ b/.github/workflows/test-discussion-expires.lock.yml
@@ -1934,22 +1934,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -5560,7 +5560,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -5570,7 +5570,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -5579,7 +5579,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/test-hide-older-comments.lock.yml b/.github/workflows/test-hide-older-comments.lock.yml
index 84c29fa1ee..4bc8629fb2 100644
--- a/.github/workflows/test-hide-older-comments.lock.yml
+++ b/.github/workflows/test-hide-older-comments.lock.yml
@@ -626,7 +626,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -2686,22 +2686,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6334,7 +6334,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6344,7 +6344,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6353,7 +6353,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/test-python-safe-input.lock.yml b/.github/workflows/test-python-safe-input.lock.yml
index ca2b9737af..04368cfd9e 100644
--- a/.github/workflows/test-python-safe-input.lock.yml
+++ b/.github/workflows/test-python-safe-input.lock.yml
@@ -3525,22 +3525,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7180,7 +7180,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7190,7 +7190,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7199,7 +7199,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/tidy.lock.yml b/.github/workflows/tidy.lock.yml
index 6a7a64151f..170cb1e6cb 100644
--- a/.github/workflows/tidy.lock.yml
+++ b/.github/workflows/tidy.lock.yml
@@ -2549,22 +2549,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6311,7 +6311,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6321,7 +6321,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6330,7 +6330,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/typist.lock.yml b/.github/workflows/typist.lock.yml
index b0ea1a0c94..4eac10f660 100644
--- a/.github/workflows/typist.lock.yml
+++ b/.github/workflows/typist.lock.yml
@@ -2620,22 +2620,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6307,7 +6307,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6317,7 +6317,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6326,7 +6326,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/unbloat-docs.lock.yml b/.github/workflows/unbloat-docs.lock.yml
index ea387e9a59..6317e7f2d2 100644
--- a/.github/workflows/unbloat-docs.lock.yml
+++ b/.github/workflows/unbloat-docs.lock.yml
@@ -1456,7 +1456,7 @@ jobs:
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : (comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
@@ -3750,22 +3750,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7242,7 +7242,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7252,7 +7252,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7261,7 +7261,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/video-analyzer.lock.yml b/.github/workflows/video-analyzer.lock.yml
index 81ec96c0e8..6f5dd81842 100644
--- a/.github/workflows/video-analyzer.lock.yml
+++ b/.github/workflows/video-analyzer.lock.yml
@@ -2243,22 +2243,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -6217,7 +6217,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -6227,7 +6227,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -6236,7 +6236,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/.github/workflows/weekly-issue-summary.lock.yml b/.github/workflows/weekly-issue-summary.lock.yml
index a48cd23e5f..f48c69d4b4 100644
--- a/.github/workflows/weekly-issue-summary.lock.yml
+++ b/.github/workflows/weekly-issue-summary.lock.yml
@@ -2598,22 +2598,22 @@ jobs:
}
const summary = '\n' +
- '🤖 Agentic Workflow Run Overview
\n\n' +
- '### Engine Configuration\n' +
+ 'Run details
\n\n' +
+ '#### Engine Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Engine ID | ${awInfo.engine_id} |\n` +
`| Engine Name | ${awInfo.engine_name} |\n` +
`| Model | ${awInfo.model || '(default)'} |\n` +
'\n' +
- '### Network Configuration\n' +
+ '#### Network Configuration\n' +
'| Property | Value |\n' +
'|----------|-------|\n' +
`| Mode | ${awInfo.network_mode || 'defaults'} |\n` +
`| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\n` +
`| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\n` +
'\n' +
- (networkDetails ? `#### Allowed Domains\n${networkDetails}\n` : '') +
+ (networkDetails ? `##### Allowed Domains\n${networkDetails}\n` : '') +
' ';
await core.summary.addRaw(summary).write();
@@ -7026,7 +7026,7 @@ jobs:
if (missingTools.length > 0) {
core.info("Missing tools summary:");
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
core.info(`${index + 1}. Tool: ${tool.tool}`);
@@ -7036,7 +7036,7 @@ jobs:
}
core.info(` Reported at: ${tool.timestamp}`);
core.info("");
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
}
@@ -7045,7 +7045,7 @@ jobs:
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
main().catch(error => {
diff --git a/pkg/workflow/compiler_yaml.go b/pkg/workflow/compiler_yaml.go
index 50039baa83..0ba280e6ef 100644
--- a/pkg/workflow/compiler_yaml.go
+++ b/pkg/workflow/compiler_yaml.go
@@ -1086,22 +1086,22 @@ func (c *Compiler) generateWorkflowOverviewStep(yaml *strings.Builder, data *Wor
yaml.WriteString(" \n")
// Build summary using string concatenation to avoid YAML parsing issues with template literals
yaml.WriteString(" const summary = '\\n' +\n")
- yaml.WriteString(" '🤖 Agentic Workflow Run Overview
\\n\\n' +\n")
- yaml.WriteString(" '### Engine Configuration\\n' +\n")
+ yaml.WriteString(" 'Run details
\\n\\n' +\n")
+ yaml.WriteString(" '#### Engine Configuration\\n' +\n")
yaml.WriteString(" '| Property | Value |\\n' +\n")
yaml.WriteString(" '|----------|-------|\\n' +\n")
yaml.WriteString(" `| Engine ID | ${awInfo.engine_id} |\\n` +\n")
yaml.WriteString(" `| Engine Name | ${awInfo.engine_name} |\\n` +\n")
yaml.WriteString(" `| Model | ${awInfo.model || '(default)'} |\\n` +\n")
yaml.WriteString(" '\\n' +\n")
- yaml.WriteString(" '### Network Configuration\\n' +\n")
+ yaml.WriteString(" '#### Network Configuration\\n' +\n")
yaml.WriteString(" '| Property | Value |\\n' +\n")
yaml.WriteString(" '|----------|-------|\\n' +\n")
yaml.WriteString(" `| Mode | ${awInfo.network_mode || 'defaults'} |\\n` +\n")
yaml.WriteString(" `| Firewall | ${awInfo.firewall_enabled ? '✅ Enabled' : '❌ Disabled'} |\\n` +\n")
yaml.WriteString(" `| Firewall Version | ${awInfo.firewall_version || '(latest)'} |\\n` +\n")
yaml.WriteString(" '\\n' +\n")
- yaml.WriteString(" (networkDetails ? `#### Allowed Domains\\n${networkDetails}\\n` : '') +\n")
+ yaml.WriteString(" (networkDetails ? `##### Allowed Domains\\n${networkDetails}\\n` : '') +\n")
yaml.WriteString(" ' ';\n")
yaml.WriteString(" \n")
yaml.WriteString(" await core.summary.addRaw(summary).write();\n")
diff --git a/pkg/workflow/js/add_comment.cjs b/pkg/workflow/js/add_comment.cjs
index 82980a0f21..e2de202274 100644
--- a/pkg/workflow/js/add_comment.cjs
+++ b/pkg/workflow/js/add_comment.cjs
@@ -198,7 +198,7 @@ async function hideOlderComments(github, owner, repo, itemNumber, workflowId, is
let hiddenCount = 0;
for (const comment of comments) {
try {
- const nodeId = isDiscussion ? String(comment.id) : /** @type {{node_id: string}} */(comment).node_id;
+ const nodeId = isDiscussion ? String(comment.id) : /** @type {{node_id: string}} */ comment.node_id;
core.info(`Hiding comment: ${nodeId}`);
await minimizeComment(github, nodeId, normalizedReason);
hiddenCount++;
diff --git a/pkg/workflow/js/missing_tool.cjs b/pkg/workflow/js/missing_tool.cjs
index 21f8e18ab0..7d4e3510cf 100644
--- a/pkg/workflow/js/missing_tool.cjs
+++ b/pkg/workflow/js/missing_tool.cjs
@@ -105,7 +105,7 @@ async function main() {
// Create structured summary for GitHub Actions step summary
core.summary
- .addHeading("Missing Tools Report", 2)
+ .addHeading("Missing Tools Report", 3)
.addRaw(`Found **${missingTools.length}** missing tool${missingTools.length > 1 ? "s" : ""} in this workflow execution.\n\n`);
missingTools.forEach((tool, index) => {
@@ -118,7 +118,7 @@ async function main() {
core.info("");
// Add to summary with structured formatting
- core.summary.addRaw(`### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
+ core.summary.addRaw(`#### ${index + 1}. \`${tool.tool}\`\n\n`).addRaw(`**Reason:** ${tool.reason}\n\n`);
if (tool.alternatives) {
core.summary.addRaw(`**Alternatives:** ${tool.alternatives}\n\n`);
@@ -130,7 +130,7 @@ async function main() {
core.summary.write();
} else {
core.info("No missing tools reported in this workflow execution.");
- core.summary.addHeading("Missing Tools Report", 2).addRaw("✅ No missing tools reported in this workflow execution.").write();
+ core.summary.addHeading("Missing Tools Report", 3).addRaw("✅ No missing tools reported in this workflow execution.").write();
}
}
diff --git a/pkg/workflow/sh/print_safe_outputs_summary.sh b/pkg/workflow/sh/print_safe_outputs_summary.sh
index 7b21a1805e..f0a6fc0fb8 100644
--- a/pkg/workflow/sh/print_safe_outputs_summary.sh
+++ b/pkg/workflow/sh/print_safe_outputs_summary.sh
@@ -1,5 +1,5 @@
{
- echo "## Safe Outputs (JSONL)"
+ echo "### Safe Outputs (JSONL)"
echo ""
echo '```json'
if [ -f ${{ env.GH_AW_SAFE_OUTPUTS }} ]; then
diff --git a/pkg/workflow/step_summary_test.go b/pkg/workflow/step_summary_test.go
index 5cd28cfcd7..c29c62b079 100644
--- a/pkg/workflow/step_summary_test.go
+++ b/pkg/workflow/step_summary_test.go
@@ -299,8 +299,8 @@ This workflow tests the workflow overview for Claude engine.
if !strings.Contains(lockContent, "") {
t.Error("Expected HTML tag for collapsible summary")
}
- if !strings.Contains(lockContent, "🤖 Agentic Workflow Run Overview
") {
- t.Error("Expected HTML tag with workflow overview title")
+ if !strings.Contains(lockContent, "Run details
") {
+ t.Error("Expected HTML tag with 'Run details' title")
}
if !strings.Contains(lockContent, "
") {
t.Error("Expected HTML closing tag")