From b3b3def98fe74ed45bf95693cd18e72b08f27c27 Mon Sep 17 00:00:00 2001 From: Matthieu Napoli Date: Tue, 8 Sep 2020 10:37:07 +0200 Subject: [PATCH] Add a command to generate the changelog --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 732ea70fd..dacabba10 100644 --- a/Makefile +++ b/Makefile @@ -58,4 +58,7 @@ layers.json: test-stack: serverless deploy -c tests/serverless.tests.yml -.PHONY: runtimes website website-preview website-assets demo layers.json test-stack +changelog: + docker run -it --rm -v "$(pwd)":/usr/local/src/your-app ferrarimarco/github-changelog-generator --user brefphp --project bref --output= --unreleased-only --token=$$GITHUB_TOKEN_READ --no-issues --usernames-as-github-logins --no-verbose + +.PHONY: runtimes website website-preview website-assets demo layers.json test-stack changelog