git-commit-proxy-version: Omit SHAs from commit (#3076)

The git-commt-proxy-version script attempted to link to the specifc
SHAs. GitHub doesn't actually render these links, and the information is
redundant since we link the appropriate PR.
This commit is contained in:
Oliver Gould 2019-07-11 14:48:30 -07:00 committed by GitHub
parent 7699ef256d
commit c1aaaf8114
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ echo "proxy: Update proxy to ${new_proxy_revision}" >"$tmp/commit.template"
echo "" >>"$tmp/commit.template"
git log --pretty=oneline --abbrev-commit --reverse "${old_proxy_version}..${new_proxy_version}" | \
sed -E -e 's,^,* linkerd/linkerd2-proxy#,' \
sed -E -e 's,^[a-f0-9]{7} ,* ,' \
-e 's, \((#[0-9]+)\), (linkerd/linkerd2-proxy\1),' \
>>"$tmp/commit.template"