-
Notifications
You must be signed in to change notification settings - Fork 310
fix: update integrity filter blocked message and bold summary headers #22173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -94,9 +94,9 @@ function generateDifcFilteredSection(filteredEvents) { | |||||
|
|
||||||
| let section = "\n\n> [!NOTE]\n"; | ||||||
| section += `> <details>\n`; | ||||||
| section += `> <summary>🔒 Integrity filter blocked ${count} ${itemWord}</summary>\n`; | ||||||
| section += `> <summary>**🔒 Integrity filter blocked ${count} ${itemWord}**</summary>\n`; | ||||||
|
||||||
| section += `> <summary>**🔒 Integrity filter blocked ${count} ${itemWord}**</summary>\n`; | |
| section += `> <summary><strong>🔒 Integrity filter blocked ${count} ${itemWord}</strong></summary>\n`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<summary>is emitted as HTML, and Markdown emphasis (**...**) typically isn’t parsed inside HTML tags in GitHub-flavored Markdown. This can cause the UI to show the literal**instead of bold text. For consistent rendering (and to align with existing usage likeactions/setup/js/validate_secrets.cjs:600), use<summary><strong>…</strong></summary>(or<b>) and update the tests to match.