Skip to content

Commit 2dca5cd

Browse files
authored
Escape backticks when generating Docker image tags (#53)
* Replace `"` with `'`
1 parent 0504013 commit 2dca5cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate-docker-image-tags/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ runs:
6868
then
6969
# Workflow was triggered by a "push" event.
7070
PR_NUMBER=$( \
71-
(echo "${{ github.event.head_commit.message }}" \
71+
(echo '${{ github.event.head_commit.message }}' \
7272
| grep -o "\(#[0-9]\+\)" || true) \
7373
| sed "s/[#()]//g" \
7474
)

0 commit comments

Comments
 (0)