add hyphens to random blueprint name

This commit is contained in:
miloschwartz
2026-04-26 11:11:31 -07:00
parent 491636851f
commit f24f867684
3 changed files with 4 additions and 4 deletions

View File

@@ -293,7 +293,7 @@ export async function applyBlueprint({
orgId,
name:
name ??
`${faker.word.adjective()} ${faker.word.adjective()} ${faker.word.noun()}`,
`${faker.word.adjective()}-${faker.word.adjective()}-${faker.word.noun()}`,
contents: stringifyYaml(configData),
createdAt: Math.floor(Date.now() / 1000),
succeeded: blueprintSucceeded,