You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Build comment body from parts, sanitizing first to preserve workflow markers
307
+
constcommentParts=[
308
+
sanitizeContent(workflowLinkText),
309
+
...(lockForAgent&&(eventName==="issues"||eventName==="issue_comment") ? ["🔒 This issue has been locked while the workflow is running to prevent concurrent modifications."] : []),
// Could not compute hash - be conservative and fail
195
207
core.warning("Could not compare frontmatter hashes - assuming lock file is outdated");
196
-
constwarningMessage=`Lock file '${lockFilePath}' integrity check failed! Could not verify frontmatter hash for '${workflowMdPath}'. Run 'gh aw compile' to regenerate the lock file.`;
208
+
constwarningMessage=`Lock file '${lockFilePath}' is outdated or unverifiable! Could not verify frontmatter hash for '${workflowMdPath}'. Run 'gh aw compile' to regenerate the lock file.`;
197
209
198
210
letsummary=core.summary
199
211
.addRaw("### ⚠️ Workflow Lock File Warning\n\n")
200
-
.addRaw("**WARNING**: Lock file integrity check failed. Could not verify frontmatter hash.\n\n")
212
+
.addRaw("**WARNING**: Could not verify whether lock file is up to date. Frontmatter hash check failed.\n\n")
0 commit comments