Compare commits

...

7 Commits

Author SHA1 Message Date
Renovator Bot 4b077409e9 chore(deps): update node:lts-alpine3.12 docker digest to aed8ac1
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
2021-03-12 14:04:02 +00:00
Renovator Bot 42090b479b chore(deps): update node:lts-alpine3.12 docker digest to 8541d26
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-02-25 05:03:34 +00:00
Renovator Bot a8babeabf1 chore(deps): update node:lts-alpine3.12 docker digest to b16524c
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-02-24 05:04:07 +00:00
Renovator Bot 58562fa08f chore(deps): update node:lts-alpine3.12 docker digest to b5a2ca7
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-02-20 13:08:30 +00:00
Robert Kaussow 817d6b748b
[skip ci] remove local changelog 2021-02-11 21:05:37 +01:00
Robert Kaussow 3cc6066f1c
ci: auto-generate changelog
continuous-integration/drone/push Build is passing Details
2021-02-11 20:51:02 +01:00
Renovator Bot 3695c3fbd2 chore(deps): update node:lts-alpine3.12 docker digest to b7baab1
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2021-02-10 10:03:52 +00:00
6 changed files with 62 additions and 12 deletions

23
.chglog/CHANGELOG.tpl.md Executable file
View File

@ -0,0 +1,23 @@
# Changelog
{{ range .Versions -}}
## {{ if .Tag.Previous }}[{{ .Tag.Name }}]({{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}){{ else }}{{ .Tag.Name }}{{ end }} ({{ 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 -}}

25
.chglog/config.yml Executable file
View File

@ -0,0 +1,25 @@
style: github
template: CHANGELOG.tpl.md
info:
title: CHANGELOG
repository_url: https://gitea.rknet.org/docker/link-validator
options:
commit_groups:
title_maps:
feat: Features
fix: Bug Fixes
perf: Performance Improvements
refactor: Code Refactoring
chore: Others
test: Testing
ci: CI Pipeline
docs: Documentation
header:
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$"
pattern_maps:
- Type
- Scope
- Subject
notes:
keywords:
- BREAKING CHANGE

View File

@ -57,6 +57,15 @@ steps:
depends_on:
- dryrun
- name: changelog
image: thegeeklab/git-chglog
commands:
- git fetch -tq
- git-chglog --no-color --no-emoji ${DRONE_TAG:---next-tag unreleased unreleased}
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}
depends_on:
- tags
- name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:20
settings:
@ -73,7 +82,7 @@ steps:
- refs/heads/main
- refs/tags/**
depends_on:
- tags
- changelog
- name: publish-quay
image: thegeeklab/drone-docker-buildx:20
@ -92,7 +101,7 @@ steps:
- refs/heads/main
- refs/tags/**
depends_on:
- tags
- changelog
- name: publish-gitea
image: plugins/gitea-release
@ -185,6 +194,6 @@ depends_on:
---
kind: signature
hmac: e99ea2a36081a89c672526b280174bed22ffd900c25ee03c5aacca0c4c9714d4
hmac: 46597d1f775dcc6b21ae3a42cd40b9996894e9fdb9bb59b985e24bc02101354c
...

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
CHANGELOG.md

View File

@ -1,8 +0,0 @@
# Changelog
## v0.7.8-7 (2021-01-29)
### Others
- **deps:** update node:lts-alpine3.12 docker digest to 92c8a9d
- **deps:** update dependency caddyserver/caddy to v2.3.0

View File

@ -1,4 +1,4 @@
FROM node:lts-alpine3.12@sha256:92c8a9d70dcbc8bb628c346ae1c39ea521103d998496a49fb072332c63228a65
FROM node:lts-alpine3.12@sha256:aed8ac10548375da1c15e817b6d5d03e67d84cac5dfef922a76a7675d5c9642a
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"