-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add changelog and use auto for creating releases (#156)
Changes made: * add initial configuration * generate the changelog and format it * modify the cd pipeline to only append the generated build files * update the contribution documentation to reflect changes in the release process
- Loading branch information
Showing
5 changed files
with
828 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"plugins": [ | ||
"first-time-contributor", | ||
[ | ||
"omit-release-notes", | ||
{ | ||
"labels": "ignore-release" | ||
} | ||
] | ||
], | ||
"owner": "builditluc", | ||
"repo": "wiki-tui", | ||
"baseBranch": "main", | ||
|
||
"noDefaultLabels": true, | ||
"labels": [ | ||
{ "name": "breaking-change", "description": "This introduces a breaking change to the codebase. Increment the major version", "changelogTitle": "Breaking Changes 🛠", "releaseType": "major", "color": "#b60205" }, | ||
{ "name": "type: bug", "description": "This fixes a bug. Increment the minor version", "changelogTitle": "Bug Fixes 🐛", "releaseType": "patch", "color": "#b60205" }, | ||
{ "name": "type: chore", "description": "Updates to the build process or dependency updates", "changelogTitle": "CI Pipeline and Dependency Updates", "releaseType": "none", "color": "#fef2c0" }, | ||
{ "name": "type: documentation", "description": "Changes to the documentation (in code and external documentation)", "changelogTitle": "Documentation Changes", "releaseType": "none", "color": "#1d76db" }, | ||
{ "name": "type: feature", "description": "Implements a new feature", "changelogTitle": "Exciting New Features 🎉", "releaseType": "minor", "color": "#a2eeef" }, | ||
{ "name": "type: refactor", "description": "Changes to the style and structure of the codebase or project", "changelogTitle": "Structure and Style Changes", "releaseType": "none", "color": "#bfdadc" }, | ||
{ "name": "type: testing", "description": "Changes to the tests", "changelogTitle": "Tests", "releaseType": "none", "color": "#f9d0c4" }, | ||
{ "name": "ignore-release", "description": "This won't be included in the release notes", "releaseType": "skip", "color": "#5ceb33" }, | ||
{ "name": "other", "releaseType": "none", "default": true, "changelogTitle": "Other Changes" } | ||
], | ||
|
||
"changelog": { "message": "Update Changelog" } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ wiki_tui.log | |
|
||
.direnv/cache-pre321137.8e1eab9eae4 | ||
.direnv/drv | ||
.direnv | ||
.direnv | ||
.env |
Oops, something went wrong.