alexis<3
04/21/2022, 8:52 PMalexis<3
04/21/2022, 8:53 PMkevins8
04/21/2022, 8:55 PMkevins8
04/21/2022, 8:55 PMalexis<3
04/21/2022, 8:55 PMalexis<3
04/21/2022, 8:56 PMalexis<3
04/21/2022, 8:59 PMSeriousBug
04/21/2022, 9:00 PMalexis<3
04/21/2022, 9:00 PMalexis<3
04/21/2022, 9:02 PMSeriousBug
04/21/2022, 9:03 PMSeriousBug
04/21/2022, 9:03 PMalexis<3
04/21/2022, 9:04 PMalexis<3
04/21/2022, 9:08 PMversion: 1
scehmas:
- id: monolith
title: monolith-ticket
parent: root
children:
- pattern: tickets
children:
- pattern: '*'
template: templates.ticket
children: []
alexis<3
04/21/2022, 9:08 PMmonolith.tickets.<submodule>.<jira-number>
SeriousBug
04/21/2022, 9:09 PMscehmas
is misspelled, it should be schemas
.
I think this would work if you set namespace: true
for the patter: '*'
one. But you could also make it more specific, give me a second and I'll come up with somethingalexis<3
04/21/2022, 9:10 PMalexis<3
04/21/2022, 9:10 PMalexis<3
04/21/2022, 9:10 PMalexis<3
04/21/2022, 9:11 PMalexis<3
04/21/2022, 9:12 PMSeriousBug
04/21/2022, 9:13 PMversion: 1
imports: []
schemas:
- id: monolith
title: monolith
parent: root
children:
- id: tickets
title: tickets
namespace: true
children:
- pattern: '*'
template: templates.ticket
I was able to create monolith.tickets.foo.123
and it applied the templateSeriousBug
04/21/2022, 9:14 PMalexis<3
04/21/2022, 9:15 PMalexis<3
04/21/2022, 9:15 PMalexis<3
04/21/2022, 9:16 PMalexis<3
04/21/2022, 9:17 PMalexis<3
04/21/2022, 9:17 PMSeriousBug
04/21/2022, 9:19 PMnamespace: true
is basically the same as
- id: tickets
children:
- id: submodule
pattern: '*'
children:
- pattern: '*'
template: templates.ticket
Namespace: true inserts a dummy level with a *
pattern. Each *
matches only one level, so you need two here.alexis<3
04/21/2022, 9:20 PM