Skip to content

Commit 039b01f

Browse files
committed
Actions: Fix features workflow
1 parent 6e55b8d commit 039b01f

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/feature-request-custom-work.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,18 @@ jobs:
5151
return;
5252
}
5353
54+
const commentBody = [
55+
'Blazorise is continuously evolving, and we do review feature requests from the community. However, due to limited resources, not all requests can be prioritized or scheduled in the short term.',
56+
'',
57+
'If this feature is critical for your project and you need it implemented on a specific timeline, we offer a custom development program where features can be prioritized and delivered in collaboration with you: ',
58+
'https://blazorise.com/custom-work',
59+
'',
60+
'---',
61+
].join('\n');
62+
5463
await github.rest.issues.createComment({
5564
owner: context.repo.owner,
5665
repo: context.repo.repo,
5766
issue_number: context.issue.number,
58-
body: `Blazorise is continuously evolving, and we do review feature requests from the community. However, due to limited resources, not all requests can be prioritized or scheduled in the short term.
59-
60-
If this feature is critical for your project and you need it implemented on a specific timeline, we offer a custom development program where features can be prioritized and delivered in collaboration with you:
61-
https://blazorise.com/custom-work
62-
63-
---`,
67+
body: commentBody,
6468
});

0 commit comments

Comments
 (0)