aboutsummaryrefslogtreecommitdiff
path: root/.ghglog
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2025-05-25 22:22:36 -0700
committerMax Resnick <max@ofmax.li>2025-05-25 22:22:36 -0700
commitf9931ac1af4b86e1704dfbde935b7ab78b45ad38 (patch)
treee05395d973d53b8036fc923af9b51f0146370a7d /.ghglog
parent5054cd34c92c6c5d5ff4f8b8a6488c4ab1395f4b (diff)
downloadgo-bumpver-f9931ac1af4b86e1704dfbde935b7ab78b45ad38.tar.gz
fix: chglog config in wrong directoryHEADCHECKPOINT0.2.2master
Diffstat (limited to '.ghglog')
-rwxr-xr-x.ghglog/CHANGELOG.tpl.md12
-rw-r--r--.ghglog/bk.tpl32
-rwxr-xr-x.ghglog/config.yml27
3 files changed, 0 insertions, 71 deletions
diff --git a/.ghglog/CHANGELOG.tpl.md b/.ghglog/CHANGELOG.tpl.md
deleted file mode 100755
index 27f4fca..0000000
--- a/.ghglog/CHANGELOG.tpl.md
+++ /dev/null
@@ -1,12 +0,0 @@
-{{ if .Versions -}}
-{{ range .Versions }}
-## {{ .Tag.Name }} - {{ datetime "2006-01-02" .Tag.Date }}
-
-{{ range .CommitGroups -}}
-### {{ .Title }}
-{{ range .Commits -}}
-- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
-{{ end }}
-{{ end -}}
-{{ end -}}
-{{ end -}}
diff --git a/.ghglog/bk.tpl b/.ghglog/bk.tpl
deleted file mode 100644
index d438ac1..0000000
--- a/.ghglog/bk.tpl
+++ /dev/null
@@ -1,32 +0,0 @@
-
-{{ if .Versions -}}
-## Unreleased
-
-{{ if .Unreleased.CommitGroups -}}
-{{ range .Unreleased.CommitGroups -}}
-### {{ .Title }}
-{{ range .Commits -}}
-- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
-{{ end }}
-{{ end -}}
-{{ end -}}
-{{ end -}}
-
-{{ range .Versions }}
-## {{ .Tag.Name }} - {{ datetime "2006-01-02" .Tag.Date }}
-{{ range .CommitGroups -}}
-### {{ .Title }}
-{{ range .Commits -}}
-- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
-{{ end }}
-{{ end -}}
-
-{{- if .NoteGroups -}}
-{{ range .NoteGroups -}}
-### {{ .Title }}
-{{ range .Notes }}
-{{ .Body }}
-{{ end }}
-{{ end -}}
-{{ end -}}
-{{ end -}}
diff --git a/.ghglog/config.yml b/.ghglog/config.yml
deleted file mode 100755
index 6d4e82f..0000000
--- a/.ghglog/config.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-style: none
-template: CHANGELOG.tpl.md
-info:
- title: CHANGELOG
- repository_url: https://git.ofmax.li/go-bumpver
-options:
- commits:
- # filters:
- # Type:
- # - feat
- # - fix
- # - perf
- # - refactor
- commit_groups:
- # title_maps:
- # feat: Features
- # fix: Bug Fixes
- # perf: Performance Improvements
- # refactor: Code Refactoring
- header:
- pattern: "^(\\w*)\\:\\s(.*)$"
- pattern_maps:
- - Type
- - Subject
- notes:
- keywords:
- - BREAKING CHANGE