0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-11-21 13:40:39 +00:00

ci: add automatic changelog generation (#16)

This commit is contained in:
Robert Kaussow 2021-02-12 10:28:31 +01:00 committed by GitHub
parent d5ac147251
commit d94de07909
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 29 additions and 24 deletions

View File

@ -11,9 +11,9 @@ options:
perf: Performance Improvements perf: Performance Improvements
refactor: Code Refactoring refactor: Code Refactoring
chore: Others chore: Others
docs: Documentation
ci: CI Pipeline
test: Testing test: Testing
ci: CI Pipeline
docs: Documentation
header: header:
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$" pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$"
pattern_maps: pattern_maps:

View File

@ -259,16 +259,30 @@ def release(ctx):
"name": "release", "name": "release",
"steps": [ "steps": [
{ {
"name": "release", "name": "changelog",
"image": "plugins/github-release", "image": "thegeeklab/git-chglog",
"settings": { "commands": [
"api_key": { "git fetch -tq",
"from_secret": "github_token", "git-chglog --no-color --no-emoji %s" % (ctx.build.ref.replace("refs/tags/v", "") if ctx.build.event == "tag" else "--next-tag unreleased unreleased"),
}, "git-chglog --no-color --no-emoji -o CHANGELOG.md %s" % (ctx.build.ref.replace("refs/tags/v", "") if ctx.build.event == "tag" else "--next-tag unreleased unreleased"),
"note": "CHANGELOG.md", ]
"overwrite": True, },
"title": ctx.build.ref.replace("refs/tags/", ""), {
}, "name": "release",
"image": "plugins/github-release",
"settings": {
"api_key": {
"from_secret": "github_token",
},
"note": "CHANGELOG.md",
"overwrite": True,
"title": ctx.build.ref.replace("refs/tags/", ""),
},
"when": {
"ref": [
"refs/tags/**",
],
},
} }
], ],
"depends_on": [ "depends_on": [
@ -276,7 +290,9 @@ def release(ctx):
], ],
"trigger": { "trigger": {
"ref": [ "ref": [
"refs/heads/master",
"refs/tags/**", "refs/tags/**",
"refs/pull/**",
], ],
}, },
}] }]

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
coverage.out coverage.out
.drone.yml .drone.yml
CHANGELOG.md

View File

@ -1,12 +0,0 @@
# Changelog
## [v2.10.4](https://github.com/owncloud-ci/drone-ansible/compare/v2.10.3...v2.10.4) (2021-02-10)
### Code Refactoring
- rewrite to use plugin boilerplate ([#12](https://github.com/owncloud-ci/drone-ansible/issues/12))
### Others
- **deps:** update dependency ansible to v2.10.7 ([#11](https://github.com/owncloud-ci/drone-ansible/issues/11))