From 7e66358d8fc590d5d7203efd87d04627a1b51456 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 10 Feb 2021 21:36:46 +0100 Subject: [PATCH] fix drone config --- .chglog/config.yml | 1 + .drone.yml | 6 +++--- CHANGELOG.md | 8 ++++++++ 3 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.chglog/config.yml b/.chglog/config.yml index 8795df3..e333c2e 100755 --- a/.chglog/config.yml +++ b/.chglog/config.yml @@ -11,6 +11,7 @@ options: perf: Performance Improvements refactor: Code Refactoring chore: Others + ci: CI Pipeline header: pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$" pattern_maps: diff --git a/.drone.yml b/.drone.yml index 1e82afb..78b6f07 100644 --- a/.drone.yml +++ b/.drone.yml @@ -58,8 +58,8 @@ steps: - name: changelog image: thegeeklab/git-chglog commands: - - git-chglog --next-tag ${DRONE_TAG:-unreleased} ${DRONE_TAG:-unreleased} - - git-chglog -o CHANGELOG.md --next-tag ${DRONE_TAG:-unreleased} ${DRONE_TAG:-unreleased} + - git-chglog --no-color --no-emoji --next-tag ${DRONE_TAG:-unreleased} ${DRONE_TAG:-unreleased} + - git-chglog --no-color --no-emoji -o CHANGELOG.md --next-tag ${DRONE_TAG:-unreleased} ${DRONE_TAG:-unreleased} depends_on: - tags @@ -94,7 +94,7 @@ steps: - refs/heads/main - refs/tags/** depends_on: - - tags + - changelog - name: publish-gitea image: plugins/gitea-release diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..480ab8f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## unreleased (2021-02-10) + +### Ci + +- auto-generate changelog +