-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathchangelog-config.js
85 lines (77 loc) · 2.41 KB
/
changelog-config.js
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
module.exports = {
preset: 'angular',
writerOpts: {
transform: (commit, context) => {
if (!commit.hash) return null;
// Lista completa de scopes especiais
const specialScopes = [
'useGithubAutomatedRepos',
'StackLabels',
'StackIcons',
'Banner',
'API',
'Repository',
'QueryClient',
'Hooks',
'Icons',
'docs'
];
// Verifica se o commit deve ser incluído:
// 1. É do tipo feat ou fix OU
// 2. Tem um scope especial
const shouldInclude =
['feat', 'fix'].includes(commit.type) ||
(commit.scope && specialScopes.includes(commit.scope));
if (!shouldInclude) return null;
commit.hashLink = `https://github.com/DIGOARTHUR/github-automated-repos/commit/${commit.hash}`;
commit.shortHash = commit.hash.substring(0, 7);
// Padronização de nomes de scopes
if (commit.scope) {
commit.scope = commit.scope
.replace(/stack[-_]?icons?/i, 'StackIcons')
.replace(/stack[-_]?labels?/i, 'StackLabels')
.replace(/banner/i, 'Banner')
.replace(/api/i, 'API')
.replace(/repository/i, 'Repository')
.replace(/query[-_]?client/i, 'QueryClient')
.replace(/hooks?/i, 'Hooks')
.replace(/icons?/i, 'Icons');
}
// Agrupa em General se:
// 1. Não tem scope OU
// 2. Tem scope mas não está na lista especial
if (!commit.scope || !specialScopes.includes(commit.scope)) {
commit.scope = 'General';
}
return commit;
},
groupBy: 'scope',
commitGroupsSort: (a, b) => {
// Ordem customizada dos grupos
const order = [
'useGithubAutomatedRepos',
'StackIcons',
'StackLabels',
'Banner',
'API',
'Repository',
'QueryClient',
'Hooks',
'Icons',
'docs',
'General'
];
return order.indexOf(a.title) - order.indexOf(b.title);
},
commitsSort: ['type', 'subject'],
headerPartial: '<a name="{{version}}"></a>\n# {{version}} ({{date}})\n\n',
commitPartial: '| [{{shortHash}}]({{hashLink}}) | {{type}} | {{subject}} |\n',
mainTemplate: `{{> header}}
{{#each commitGroups}}
### {{title}}
| Commit | Type | Description |
|--------|------|-------------|
{{#each commits}}{{> commit}}{{/each}}
{{/each}}`
}
};