Skip to content

Commit d080cbc

Browse files
authored
fix: update regex delimiter for linkifying changelog references (#67)
1 parent e451136 commit d080cbc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
found { print }
3131
" "$CHANGELOG")
3232
33-
LINKIFIED_BODY=$(echo "$BODY" | sed -E 's/\(#([0-9]+)\)/([#\1](https:\/\/github.com\/'"${GITHUB_REPOSITORY}"'\/pull\/\1))/g')
33+
LINKIFIED_BODY=$(echo "$BODY" | sed -E 's|\(#([0-9]+)\)|([#\1](https://github.com/'"${GITHUB_REPOSITORY}"'/pull/\1))|g')
3434
3535
echo "body<<EOF" >> $GITHUB_OUTPUT
3636
echo "$LINKIFIED_BODY" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)