Skip to content

Commit

Permalink
✨ Added gitjournal configuration to generate changelogs.
Browse files Browse the repository at this point in the history
Changelog generation should be an automated process using git-journal,
instead of a manual process of grabbing individual commit(s) from the log
and placing them in appropriate categories.
  • Loading branch information
jwir3 committed Jun 26, 2021
1 parent 5531fca commit 9beed39
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitjournal.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
categories = ["Fix", "Remove", "Initial", "Added"]
category_delimiters = ["", ""]
colored_output = true
enable_debug = true
enable_footers = false
excluded_commit_tags = []
show_commit_hash = true
show_prefix = false
sort_by = "name"
template_prefix = ""
12 changes: 12 additions & 0 deletions gitjournal.template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[tags]]
tag = "bug"
name = "Bug Fixes"

[[tags]]
tag = "tada"
name = "Miscellaneous"

[[tags]]
tag = "default"
name = "Default"

22 changes: 22 additions & 0 deletions template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[[tags]]
footers = []
name = "default"
tag = "default"

[[tags]]
footers = []
name = "Miscellaneous"
tag = "tada"

[[tags]]
footers = []
name = "Features"
tag = "sparkles"

[footer]
once = false
text = ""

[header]
once = false
text = ""

0 comments on commit 9beed39

Please sign in to comment.