We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c757596 commit 70237f1Copy full SHA for 70237f1
2 files changed
.github/ISSUE_TEMPLATE/submit-plugin.yml
@@ -53,9 +53,10 @@ body:
53
id: frameworks
54
attributes:
55
label: Frameworks
56
- description: What framework(s) does this plugin use? (Select all that apply)
+ description: What framework(s) does this plugin use? (Select all that apply, or choose None)
57
multiple: true
58
options:
59
+ - None
60
- DPF
61
- Faust
62
- FLTK
.github/workflows/process-submission.yml
@@ -89,7 +89,10 @@ jobs:
89
const regex = new RegExp(`### ${fieldName}\\s*\\n\\s*([^#]+?)(?=###|$)`, 'i');
90
const match = body.match(regex);
91
if (!match) return [];
92
- return match[1].split(',').map(s => s.trim()).filter(s => s && s !== '_No response_');
+ return match[1]
93
+ .split(',')
94
+ .map(s => s.trim())
95
+ .filter(s => s && s !== '_No response_' && s.toLowerCase() !== 'none');
96
};
97
98
let entry = {};
0 commit comments