Skip to content

Commit

Permalink
Remove backticks from markdown.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
metcalfc committed Oct 22, 2021
1 parent 44ef091 commit 36466c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion changelog.sh
Expand Up @@ -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" ];
Expand Down
2 changes: 1 addition & 1 deletion dist/changelog.sh
Expand Up @@ -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" ];
Expand Down

0 comments on commit 36466c9

Please sign in to comment.