We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0ec58a commit c8400e4Copy full SHA for c8400e4
generator/cli.ts
@@ -215,6 +215,15 @@ if (options.configFile) {
215
return true;
216
},
217
});
218
+ } else if (options.author.includes('TTT')) {
219
+ const author = await input({
220
+ message: 'Skyward proposal, please provide the name this proposal should be attributed to',
221
+ validate(input) {
222
+ if (input.length == 0) return "Author name can't be empty";
223
+ return true;
224
+ },
225
+ });
226
+ options.author = options.author.replace('TTT', author);
227
}
228
229
if (!options.discussion && whitelabelPools.length == 0) {
0 commit comments