-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.release-please-config.json
More file actions
94 lines (94 loc) · 1.91 KB
/
.release-please-config.json
File metadata and controls
94 lines (94 loc) · 1.91 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
{
"bootstrap-sha": "fe68e0310fd817a8f9bc1e2559f2277fed3aed34",
"release-type": "simple",
"prerelease": false,
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"include-v-in-tag": true,
"signoff": "OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>",
"extra-files": [
{
"type": "generic",
"path": "docker-compose.yaml",
"replacements": [
{
"type": "string",
"search": "\\$\\{VERSION:-v([0-9]+\\.[0-9]+\\.[0-9]+)\\}",
"replace": "${VERSION:-v${version}}"
}
]
}
],
"packages": {
".": {
"release-type": "simple",
"extra-files": [
{
"type": "generic",
"path": "docker-compose.yaml",
"replacements": [
{
"type": "string",
"search": "\\$\\{VERSION:-v([0-9]+\\.[0-9]+\\.[0-9]+)\\}",
"replace": "${VERSION:-v${version}}"
}
]
}
]
}
},
"changelog-sections": [
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "feat",
"section": "✨ New Features"
},
{
"type": "chore",
"section": "🧹 Chore"
},
{
"type": "docs",
"section": "📚 Documentation"
},
{
"type": "perf",
"section": "🚀 Performance"
},
{
"type": "build",
"hidden": true,
"section": "🛠️ Build"
},
{
"type": "deps",
"section": "📦 Dependencies"
},
{
"type": "ci",
"hidden": true,
"section": "🚦 CI"
},
{
"type": "refactor",
"section": "🔄 Refactoring"
},
{
"type": "revert",
"section": "🔙 Reverts"
},
{
"type": "style",
"hidden": true,
"section": "🎨 Styling"
},
{
"type": "test",
"hidden": true,
"section": "🧪 Tests"
}
]
}