From 36466c98df1b58c593637ca3ace5b7ac578dba1b Mon Sep 17 00:00:00 2001 From: Chad Metcalf Date: Fri, 22 Oct 2021 16:34:48 -0700 Subject: [PATCH] Remove backticks from markdown. As much as I like the way it looks, the backticks are just to big of a hassle for folks that want to munge the changelog given how actions runs everything through a shell. --- changelog.sh | 2 +- dist/changelog.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/changelog.sh b/changelog.sh index deb240b..6b23e10 100755 --- a/changelog.sh +++ b/changelog.sh @@ -21,7 +21,7 @@ then fi log=$(git log "${base_ref}...${head_ref}" \ - --pretty=format:"* [\`%h\`](http://github.com/${repo_url}/commit/%H) - %s" \ + --pretty=format:"* [%h](http://github.com/${repo_url}/commit/%H) - %s" \ --reverse) if [ -z "$log" ]; diff --git a/dist/changelog.sh b/dist/changelog.sh index deb240b..6b23e10 100755 --- a/dist/changelog.sh +++ b/dist/changelog.sh @@ -21,7 +21,7 @@ then fi log=$(git log "${base_ref}...${head_ref}" \ - --pretty=format:"* [\`%h\`](http://github.com/${repo_url}/commit/%H) - %s" \ + --pretty=format:"* [%h](http://github.com/${repo_url}/commit/%H) - %s" \ --reverse) if [ -z "$log" ];