-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdangerfile-utils.js
More file actions
210 lines (180 loc) · 5.63 KB
/
dangerfile-utils.js
File metadata and controls
210 lines (180 loc) · 5.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/// Unified configuration for PR flavors (based on real Sentry usage analysis)
const FLAVOR_CONFIG = [
{
labels: ["feat", "feature", "add", "implement"],
changelog: "Features",
isFeature: true
},
{
labels: ["fix", "bug", "bugfix", "resolve", "correct"],
changelog: "Fixes"
},
{
labels: ["sec", "security"],
changelog: "Security"
},
{
labels: ["perf", "performance"],
changelog: "Performance"
},
{
// Internal changes - no changelog needed
changelog: undefined,
labels: [
"docs",
"doc",
"style",
"ref",
"refactor",
"tests",
"test",
"build",
"ci",
"chore",
"meta",
"deps",
"dep",
"update",
"bump",
"cleanup",
"format"
]
}
];
/// Get flavor configuration for a given PR flavor
function getFlavorConfig(prFlavor) {
const normalizedFlavor = prFlavor.toLowerCase().trim();
// Strip scope/context from conventional commit format: "type(scope)" -> "type"
const parenIndex = normalizedFlavor.indexOf('(');
const baseType = parenIndex !== -1 ? normalizedFlavor.substring(0, parenIndex) : normalizedFlavor;
const config = FLAVOR_CONFIG.find(config =>
config.labels.includes(normalizedFlavor) || config.labels.includes(baseType)
);
return config || {
changelog: "Features" // Default to Features
};
}
/// Extract PR flavor from title or branch name
function extractPRFlavor(prTitle, prBranchRef) {
// Validate input parameters to prevent runtime errors
if (prTitle && typeof prTitle === 'string') {
// First try conventional commit format: "type(scope): description"
const colonParts = prTitle.split(":");
if (colonParts.length > 1) {
return colonParts[0].toLowerCase().trim();
}
// Fallback: try first word for non-conventional titles like "fix memory leak"
const firstWord = prTitle.trim().split(/\s+/)[0];
if (firstWord) {
return firstWord.toLowerCase();
}
}
if (prBranchRef && typeof prBranchRef === 'string') {
const parts = prBranchRef.split("/");
if (parts.length > 1) {
return parts[0].toLowerCase();
}
}
return "";
}
/// Find insertion point and determine what content needs to be inserted
function findChangelogInsertionPoint(changelogContent, sectionName) {
const lines = changelogContent.split('\n');
// Find "## Unreleased" section
let unreleasedIndex = -1;
for (let i = 0; i < lines.length; i++) {
if (lines[i].trim().match(/^##\s+Unreleased/i)) {
unreleasedIndex = i;
break;
}
}
// Case 1: No Unreleased section exists
if (unreleasedIndex === -1) {
// Find first ## section or top of changelog to insert before it
let insertionPoint = 0;
// Skip title and initial content, look for first version section
for (let i = 0; i < lines.length; i++) {
if (lines[i].trim().match(/^##\s+/)) {
insertionPoint = i;
break;
}
}
// If no version sections exist, insert at end
if (insertionPoint === 0) {
insertionPoint = lines.length;
}
return {
lineNumber: insertionPoint + 1, // 1-indexed for GitHub API
insertContent: 'unreleased-and-section'
};
}
// Case 2: Unreleased section exists, find the target subsection
let sectionIndex = -1;
let nextSectionIndex = lines.length; // End of file by default
for (let i = unreleasedIndex + 1; i < lines.length; i++) {
// Stop if we hit another main section (##)
if (lines[i].trim().match(/^##\s+/)) {
nextSectionIndex = i;
break;
}
// Check for our target subsection
if (lines[i].trim().match(new RegExp(`^###\\s+${sectionName}`, 'i'))) {
sectionIndex = i;
break;
}
}
// Case 3: Subsection doesn't exist, need to create it within Unreleased
if (sectionIndex === -1) {
// Find insertion point after "## Unreleased" but before next main section
let insertAfter = unreleasedIndex;
// Skip empty lines after "## Unreleased"
while (insertAfter + 1 < nextSectionIndex && lines[insertAfter + 1].trim() === '') {
insertAfter++;
}
return {
lineNumber: insertAfter + 1, // 1-indexed for GitHub API
insertContent: 'section-and-entry'
};
}
// Case 4: Both Unreleased and subsection exist, just add entry
let insertionPoint = sectionIndex + 1;
// Skip empty lines after section header
while (insertionPoint < nextSectionIndex && lines[insertionPoint].trim() === '') {
insertionPoint++;
}
return {
lineNumber: insertionPoint + 1, // 1-indexed for GitHub API
insertContent: 'entry-only'
};
}
/// Generate suggestion text for changelog entry based on what needs to be inserted
function generateChangelogSuggestion(prTitle, prNumber, prUrl, sectionName, insertionInfo) {
// Clean up PR title (remove conventional commit prefix if present)
const cleanTitle = prTitle
.split(": ")
.slice(-1)[0]
.trim()
.replace(/\.+$/, "");
const bulletPoint = `- ${cleanTitle} ([#${prNumber}](${prUrl}))`;
switch (insertionInfo.insertContent) {
case 'unreleased-and-section':
// Need to create both Unreleased section and subsection
return `## Unreleased\n\n### ${sectionName}\n\n${bulletPoint}\n`;
case 'section-and-entry':
// Need to create subsection within existing Unreleased
return `\n### ${sectionName}\n\n${bulletPoint}`;
case 'entry-only':
// Just add the bullet point to existing section
return bulletPoint;
default:
// Fallback to entry-only
return bulletPoint;
}
}
module.exports = {
FLAVOR_CONFIG,
getFlavorConfig,
extractPRFlavor,
findChangelogInsertionPoint,
generateChangelogSuggestion
};