1
0
mirror of synced 2025-12-20 10:28:40 -05:00

make the pattern a string in all-versions so it can be serialized, and regex-ify it during implementation

This commit is contained in:
Sarah Schneider
2022-06-07 18:38:50 -04:00
parent f3bd355941
commit 56c1531708
3 changed files with 4 additions and 6 deletions

View File

@@ -49,8 +49,8 @@ const plans = [
hasNumberedReleases: false,
openApiBaseName: 'github.ae',
miscBaseName: 'ghae',
allowedFrontmatterPattern: /^issue-\d+?(-and-\d+?)?|next$/,
allowedInlinePattern: /^ghae-(issue-\d+?(-and-\d+?)?|next)$/,
allowedFrontmatterPattern: '^issue-\\d+?(-and-\\d+?)?|next$',
allowedInlinePattern: '^ghae-(issue-\\d+?(-and-\\d+?)?|next)$',
},
]