From 5ee0150154f89ffd4b0ec20a4901b3fd7751397b Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Fri, 19 Jun 2020 16:09:09 -0500 Subject: [PATCH] docs: added development note about generating release notes --- DEVELOPMENT.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index a3cb3fa2..2012f2f2 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -65,3 +65,10 @@ The [multiarch branch](https://github.com/itzg/docker-minecraft-server/tree/mult The multiarch images are built and published by [a Github action](https://github.com/itzg/docker-minecraft-server/actions?query=workflow%3A%22Build+and+publish+multiarch%22), which [is configured in that branch](https://github.com/itzg/docker-minecraft-server/blob/multiarch/.github/workflows/build-multiarch.yml). +## Generating release notes + +The following git command can be used to provide the bulk of release notes content: + +```shell script +git log --invert-grep --grep "^ci:" --grep "^misc:" --pretty="- %s" 1.1.0..1.2.0 +```