We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38f952d commit fa8e1f3Copy full SHA for fa8e1f3
1 file changed
action.yml
@@ -44,7 +44,12 @@ runs:
44
shell: bash
45
run: |
46
echo "HEAD_REF=${{github.event.pull_request.head.ref || github.ref_name}}" >>"${GITHUB_ENV}"
47
- echo "PR_DESCRIPTION_PREFIX=${{inputs.pr-description-prefix}}" >> "$GITHUB_ENV"
+
48
+ delimiter="$(openssl rand -hex 8)"
49
+ echo "PR_DESCRIPTION_PREFIX<<${delimiter}" >> "$GITHUB_ENV"
50
+ echo "${{inputs.pr-description-prefix}}" >> "$GITHUB_ENV"
51
+ echo "${delimiter}" >> "$GITHUB_ENV"
52
53
echo "PR_NUMBER=${{github.event.pull_request.number}}" >> "$GITHUB_ENV"
54
echo "PR_TITLE_PREFIX=${{inputs.pr-title-prefix}}" >> "$GITHUB_ENV"
55
echo "BRANCH_NAME_PREFIX=${{inputs.branch-name-prefix}}" >> "$GITHUB_ENV"
0 commit comments