We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d051a97 commit 09478c2Copy full SHA for 09478c2
.github/workflows/checklist.yml
@@ -9,8 +9,8 @@ jobs:
9
- name: Get Comment Body
10
id: get-comment-body
11
run: |
12
- existing=${{ github.event.pull_request.body }}
13
- body=${existing}$(cat .github/workflows/checklist.md)
+ existing="${{ github.event.pull_request.body }}"
+ body="${existing}$(cat .github/workflows/checklist.md)"
14
body="${body//'%'/'%25'}"
15
body="${body//$'\n'/'%0A'}"
16
body="${body//$'\r'/'%0D'}"
0 commit comments