aboutsummaryrefslogtreecommitdiff
path: root/Makefile.release
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2021-03-18 09:53:46 +0100
committerGravatar GitHub <noreply@github.com> 2021-03-18 09:53:46 +0100
commit1b2f0bef6f3716d798d8e8cfcaa8bc55a103b2aa (patch)
treeda2ae30551731155c8e6727b2352dd88852e4ba6 /Makefile.release
parent3933b46fb9a318f4ddfc388f06bc2d59be62e838 (diff)
downloadcoredns-1b2f0bef6f3716d798d8e8cfcaa8bc55a103b2aa.tar.gz
coredns-1b2f0bef6f3716d798d8e8cfcaa8bc55a103b2aa.tar.zst
coredns-1b2f0bef6f3716d798d8e8cfcaa8bc55a103b2aa.zip
workflow: move committing workflows to schedule (#4529)
This moves all workflows that commit to a schedule, so that it _doesn't_ push into peoples PRs as that enlarges them and is just non-obvious. They run throughout the week. Also change the "user" we use for this, so that DCO believes it a real email address (DCO is pretty stupid here). Update the authors target to filter out this bot as well. Signed-off-by: Miek Gieben <miek@miek.nl>
Diffstat (limited to 'Makefile.release')
-rw-r--r--Makefile.release2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.release b/Makefile.release
index 8f5534a38..d2078ee54 100644
--- a/Makefile.release
+++ b/Makefile.release
@@ -203,5 +203,5 @@ prs:
authors:
@echo "## Brought to You By"
@echo
- @git log --pretty=format:'%an' $$(git describe --tags --abbrev=0)..master | sort -u | grep -v '^coredns-auto' | grep -v '^dependabot-preview' | \
+ @git log --pretty=format:'%an' $$(git describe --tags --abbrev=0)..master | sort -u | grep -v '^coredns-auto' | grep -v '^coredns\[bot\]' | grep -v '^dependabot-preview' | \
tac | cat -n | sed -e 's/^[[:space:]]\+1[[:space:]]\+\(.*\)/\1./' | sed -e 's/^[[:space:]]\+[[:digit:]]\+[[:space:]]\+\(.*\)/\1,/' | tac # comma separate, with dot at the end