Feat: Static & Flatpak Workflow + Recent Fix

This commit is contained in:
Youwes09
2026-06-12 17:52:09 -05:00
parent 9dad1fb329
commit a041b182e5
6 changed files with 142 additions and 5 deletions
+2 -1
View File
@@ -129,9 +129,10 @@ export function buildIssueUrl(
): string {
const base = 'https://github.com/moku-project/Moku/issues/new'
const prefix = type === 'bug' ? '[Bug] ' : '[Feature Request] '
const common = {
template: type === 'bug' ? 'bug_report.yml' : 'feature_request.yml',
title,
title: title.startsWith(prefix) ? title : `${prefix}${title}`,
environment: buildEnvironmentBlock(serverVersion),
}