From 296062b8691a111420c270cc2e7d47c2172d120d Mon Sep 17 00:00:00 2001 From: vilmibm Date: Mon, 18 May 2020 14:00:19 -0500 Subject: [PATCH] configure author on site commits --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f2b4805c8..beea7c099 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ site-docs: site for f in site/manual/gh*.md; do sed -i.bak -e '/^### SEE ALSO/,$$d' "$$f"; done rm -f site/manual/*.bak git -C site add 'manual/gh*.md' - git -C site commit -m 'update help docs' || true + git -C site commit --author "cli automation " -m 'update help docs' || true .PHONY: site-docs site-publish: site-docs @@ -41,6 +41,6 @@ ifndef GITHUB_REF endif sed -i.bak -E 's/(assign version = )".+"/\1"$(GITHUB_REF:refs/tags/v%=%)"/' site/index.html rm -f site/index.html.bak - git -C site commit -m '$(GITHUB_REF:refs/tags/v%=%)' index.html + git -C site commit --author "cli automation " -m '$(GITHUB_REF:refs/tags/v%=%)' index.html git -C site push .PHONY: site-publish