Skip to content

Commit 8558b8e

Browse files
committed
fix step commit parsing
Signed-off-by: shmck <[email protected]>
1 parent 67b0195 commit 8558b8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/commits.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export async function getCommits({
6262

6363
for (const commit of logs.all) {
6464
const matches = commit.message.match(
65-
/^(?<stepId>(?<levelId>L\d+)(S\d+))(?<stepType>[QA])?/
65+
/^(?<stepId>(?<levelId>L?\d+)([S|\.]\d+))(?<stepType>[QA])?/
6666
);
6767

6868
if (matches && matches.length) {

0 commit comments

Comments
 (0)