Skip to content

Commit 9e9d800

Browse files
Merge pull request #4 from midnightmeshllc/feature-add-release-workflow
fix(env): add .versionize
2 parents 45651ed + 5f5eda0 commit 9e9d800

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.github/workflows/nuget-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
git config --local user.name "midnightmeshllc"
2727
2828
- name: Run Versionize (versioning & changelog)
29-
run: versionize --changelog-all --exit-insignificant-commits
29+
run: versionize --exit-insignificant-commits
3030
continue-on-error: false
3131

3232
- name: Get Version from Versionize

.versionize

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"changelog": {
3+
"header": "My Changelog",
4+
"includeAllCommits": true,
5+
"sections": [
6+
{
7+
"type": "feat",
8+
"section": "✨ Features",
9+
"hidden": false
10+
},
11+
{
12+
"type": "fix",
13+
"section": "🐛 Bug Fixes",
14+
"hidden": true
15+
},
16+
{
17+
"type": "perf",
18+
"section": "🚀 Performance",
19+
"hidden": false
20+
}
21+
]
22+
}
23+
}

0 commit comments

Comments
 (0)