Skip to content

Commit 9a2c6cc

Browse files
committed
chore: test prompt text
1 parent 62f1042 commit 9a2c6cc

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/icon-prompts.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,27 +55,27 @@ jobs:
5555
return '';
5656
}
5757
58-
let comment = `## 🎨 Missing Building Block Icons\n\n`;
58+
let comment = '## 🎨 Missing Building Block Icons\n\n';
5959
comment += `Found **${prompts.length}** building block(s) without \`logo.png\` files.\n\n`;
60-
comment += `Copy the prompts below and use them with your favorite AI image generator (DALL-E, Midjourney, Stable Diffusion, etc.) to create consistent icons.\n\n`;
61-
comment += `### Requirements\n`;
62-
comment += `- **Size:** 128x128 pixels\n`;
63-
comment += `- **Format:** PNG\n`;
64-
comment += `- **Max file size:** 100KB\n\n`;
65-
comment += `---\n\n`;
60+
comment += 'Copy the prompts below and use them with your favorite AI image generator (DALL-E, Midjourney, Stable Diffusion, etc.) to create consistent icons.\n\n';
61+
comment += '### Requirements\n';
62+
comment += '- **Size:** 128x128 pixels\n';
63+
comment += '- **Format:** PNG\n';
64+
comment += '- **Max file size:** 100KB\n\n';
65+
comment += '---\n\n';
6666
6767
for (const item of prompts) {
6868
comment += `### ${item.name}\n\n`;
6969
comment += `**Platform:** \`${item.platform}\`\n\n`;
7070
comment += `**Path:** \`${item.logo_path}\`\n\n`;
71-
comment += `**Prompt:**\n\n`;
71+
comment += '**Prompt:**\n\n';
7272
comment += '```\n';
7373
comment += item.prompt;
7474
comment += '\n```\n\n';
75-
comment += `---\n\n`;
75+
comment += '---\n\n';
7676
}
7777
78-
comment += `\n\n💡 **Tip:** After generating the icon, optimize it with tools like [TinyPNG](https://tinypng.com/) or [ImageOptim](https://imageoptim.com/) to ensure it's under 100KB.\n`;
78+
comment += '\n\n💡 **Tip:** After generating the icon, optimize it with tools like [TinyPNG](https://tinypng.com/) or [ImageOptim](https://imageoptim.com/) to ensure it\'s under 100KB.\n';
7979
8080
return comment;
8181

0 commit comments

Comments
 (0)