Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,18 @@ kinds:
- label: ⚰️ Deprecated
key: deprecated
auto: minor
skipBody: true
- label: 🗑️ Removed
key: removed
auto: minor
additionalChoices:
- key: Reason
type: int
minInt: 1
- label: 🪲 Fixed
key: fixed
auto: patch
skipGlobalChoices: true
- label: 🦺 Security
key: security
auto: patch
Expand Down
45 changes: 45 additions & 0 deletions .changie.yaml.copy
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# yaml-language-server: $schema=docs/schema.json
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} on {{.Time.Format "2006-01-02"}}'
kindFormat: '### {{.Kind}}'
changeFormat: '* [#{{.Custom.Issue}}](https://github.com/miniscruff/changie/issues/{{.Custom.Issue}}) {{.Body}}'
kinds:
- label: ✨ Added
key: added
auto: minor
- label: 🔥 Changed
key: changed
auto: major
- label: ⚰️ Deprecated
key: deprecated
auto: minor
- label: 🗑️ Removed
key: removed
auto: minor
- label: 🪲 Fixed
key: fixed
auto: patch
- label: 🦺 Security
key: security
auto: patch
newlines:
afterChangelogHeader: 1
afterKind: 1
afterChangelogVersion: 1
beforeKind: 1
endOfVersion: 1
custom:
- key: Issue
type: int
minInt: 1
replacements:
- path: 'docs/version.json'
find: ' "latest": ".*"'
replace: ' "latest": "{{.Version}}"'
- path: package.json
find: ' "version": ".*",'
replace: ' "version": "{{.VersionNoPrefix}}",'
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ lint: # Run linters
golangci-lint run ./...

.PHONY: format
format: lint # alias for lint
format: lint # Alias for lint

.PHONY: gen
gen: # Generate config and CLI docs
Expand Down
Loading
Loading