Skip to content

Commit c94d75e

Browse files
authored
Merge pull request #118 from datum-cloud/release-please
fix: version bump
2 parents d1f6aec + 8970f0c commit c94d75e

File tree

2 files changed

+62
-1
lines changed

2 files changed

+62
-1
lines changed

.github/workflows/release-please.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
workflow_dispatch:
88

99
permissions:
10+
issues: write
1011
contents: write
1112
pull-requests: write
1213

.release-please-config.json

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,67 @@
77
"bump-minor-pre-major": true,
88
"bump-patch-for-minor-pre-major": true,
99
"draft": false,
10-
"prerelease": false
10+
"prerelease": false,
11+
"release-message": "chore: release ${version}\n\n${changelog}",
12+
"pull-request-title-pattern": "chore: release ${version}",
13+
"pull-request-header": "## Release ${version}\n\nThis release includes the following changes:\n\n",
14+
"changelog-sections": [
15+
{
16+
"type": "feat",
17+
"section": "🚀 Features",
18+
"hidden": true
19+
},
20+
{
21+
"type": "fix",
22+
"section": "🐛 Bug Fixes",
23+
"hidden": true
24+
},
25+
{
26+
"type": "docs",
27+
"section": "📚 Documentation",
28+
"hidden": true
29+
},
30+
{
31+
"type": "style",
32+
"section": "💅 Styling",
33+
"hidden": true
34+
},
35+
{
36+
"type": "refactor",
37+
"section": "♻️ Refactoring",
38+
"hidden": true
39+
},
40+
{
41+
"type": "perf",
42+
"section": "⚡ Performance",
43+
"hidden": true
44+
},
45+
{
46+
"type": "test",
47+
"section": "🧪 Testing",
48+
"hidden": true
49+
},
50+
{
51+
"type": "build",
52+
"section": "👷 Build",
53+
"hidden": true
54+
},
55+
{
56+
"type": "ci",
57+
"section": "⚙️ CI",
58+
"hidden": true
59+
},
60+
{
61+
"type": "chore",
62+
"section": "🔧 Chores",
63+
"hidden": true
64+
},
65+
{
66+
"type": "revert",
67+
"section": "⏪ Reverts",
68+
"hidden": true
69+
}
70+
]
1171
}
1272
},
1373
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"

0 commit comments

Comments
 (0)