Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup/js/create_discussion.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ async function main(config = {}) {
// Generate footer with expiration using helper
if (includeFooter) {
const footer = addExpirationToFooter(markdownParts.footer, expiresHours, "Discussion");
bodyLines.push(``, ``, footer);
bodyLines.push(``, footer);
}

// Add standalone workflow-id marker for searchability (consistent with comments)
Expand Down
2 changes: 1 addition & 1 deletion setup/js/create_issue.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ async function main(config = {}) {
expiresHours,
"Issue"
);
bodyLines.push(``, ``, footer);
bodyLines.push(``, footer);
}

// Add standalone workflow-id marker for searchability (consistent with comments)
Expand Down
2 changes: 1 addition & 1 deletion setup/js/create_pull_request.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -1595,7 +1595,7 @@ async function main(config = {}) {
if (expiresHours > 0) {
footer += "\n\n<!-- gh-aw-expires-type: pull-request -->";
}
bodyLines.push(``, ``, footer);
bodyLines.push(``, footer);
footerParts.push(footer);
}

Expand Down
5 changes: 4 additions & 1 deletion setup/js/messages_footer.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,10 @@ function generateFooterWithMessages(workflowName, runUrl, workflowSource, workfl
}

// Attribution footer line comes after any guard notices
let footer = guardNotices + "\n\n" + getFooterMessage(ctx);
// Attribution footer line comes after any guard notices. Only add the separating
// blank line when guard notices are present, otherwise the footer would start with
// stray blank lines that render as a large gap after the body.
let footer = guardNotices ? guardNotices.trim() + "\n\n" + getFooterMessage(ctx) : getFooterMessage(ctx);

// Add installation instructions if source is available
const installMessage = getFooterInstallMessage(ctx);
Expand Down
127 changes: 0 additions & 127 deletions setup/js/parse_antigravity_log.cjs

This file was deleted.

196 changes: 0 additions & 196 deletions setup/sh/install_antigravity_cli.sh

This file was deleted.

Loading