-
Notifications
You must be signed in to change notification settings - Fork 2
/
release-please-config.json
27 lines (27 loc) · 1.72 KB
/
release-please-config.json
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
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"include-v-in-tag": true,
"packages": {
".": {
"release-type": "simple",
"changelog-sections": [
{ "type": "feat", "section": ":sparkles: Features" },
{ "type": "fix", "section": ":bug: Bug Fixes" },
{ "type": "perf", "section": ":rocket: Performance Improvements" },
{ "type": "tweak", "section": ":wrench: Feature Tweaks" },
{ "type": "revert", "section": ":back: Reverts" },
{ "type": "l10n", "section": ":earth_africa: Translations" },
{ "type": "chore", "section": ":hammer_and_wrench: Miscellaneous Chores", "hidden": true },
{ "type": "docs", "section": "Documentation", "hidden": true },
{ "type": "style", "section": "Styles", "hidden": true },
{ "type": "refactor", "section": "Code Refactoring", "hidden": true },
{ "type": "test", "section": "Tests", "hidden": true },
{ "type": "build", "section": "Build System", "hidden": true },
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
],
"extra-files": [
"Android.bp"
]
}
}
}