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 fa619fd commit 0dc9353Copy full SHA for 0dc9353
src/utils/commits.ts
@@ -73,6 +73,17 @@ export async function getCommits({
73
// add to the list
74
commits[position].push(commit.hash);
75
}
76
+ } else {
77
+ const initMatches = commit.message.match(/^INIT/);
78
+ if (initMatches && initMatches.length) {
79
+ if (!commits.INIT) {
80
+ // does not exist, create the list
81
+ commits.INIT = [commit.hash];
82
83
+ // add to the list
84
+ commits.INIT.push(commit.hash);
85
+ }
86
87
88
89
} catch (e) {
0 commit comments