-
Notifications
You must be signed in to change notification settings - Fork 0
/
release-please-config.json
41 lines (41 loc) · 1.48 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"bump-minor-pre-major": true,
"pull-request-header": ":gem: Automated Plugin Release",
"include-component-in-tag": false,
"include-v-in-tag": true,
"packages": {
".": {
"name": "courier-notices",
"release-type": "php",
"extra-files": [
{
"type": "json",
"path": "package.json",
"jsonpath": "$.version"
},
".release-please-manifest.json",
"README.md",
"readme.txt",
"courier-notices.php"
]
}
},
"changelog-sections": [
{ "type": "feat", "section": "Features ✨" },
{ "type": "feature", "section": "Features ✨" },
{ "type": "fix", "section": "Bug Fixes 🐛" },
{ "type": "docs", "section": "Documentation 📚" },
{ "type": "style", "section": "Styles 💄" },
{ "type": "test", "section": "Tests 🧪" },
{ "type": "perf", "section": "Performance Improvements ⚡️" },
{ "type": "chore", "section": "Miscellaneous Chores 🧹" },
{ "type": "tweak", "section": "Changes to Existing Features \uD83D\uDC85" },
{ "type": "refactor", "section": "Changes to Existing Features \uD83D\uDC85" },
{ "type": "improve", "section": "Changes to Existing Features \uD83D\uDC85" },
{ "type": "revert", "section": "Reverts ⏪️" },
{ "type": "docs", "section": "Documentation", "hidden": true },
{ "type": "build", "section": "Build System ", "hidden": true },
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
]
}