We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2230496 commit d682cefCopy full SHA for d682cef
1 file changed
.github/workflows/append_note_in_issue.yml
@@ -20,13 +20,13 @@ jobs:
20
const repo = context.repo.repo;
21
22
// The custom note you want to append
23
- const note = `
24
- ---
25
-
26
- > [!NOTE]
27
- > **CONTRIBUTIONS ARE WELCOME!**
28
- > If you want to get this issue assigned to you. Just comment 'assign me'. You will be assigned to the issue instantly via GitHub-actions bot.
29
- `;
+ const note = [
+ '> [!NOTE]',
+ '> 🚀 **CONTRIBUTIONS ARE WELCOME!**',
+ '> ',
+ '> If you want to get this issue assigned to you, just comment **\'assign me\'**.',
+ '> You will be assigned to the issue instantly via our GitHub Actions bot. Happy coding! ✨'
+ ].join('\n');
30
31
// Get the current issue body
32
const currentBody = context.payload.issue.body || '';
0 commit comments