We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bc82af commit 465da4cCopy full SHA for 465da4c
.github/workflows/comment.yml
@@ -19,9 +19,10 @@ jobs:
19
- name: set body comments
20
run: |
21
set -eu
22
- build_dir=$( cut -d ' ' -f 2 <<< ${{ 'github.event.comment.body' }} )
23
- buckets=$( cut -d ' ' -f 3- <<< ${{ 'github.event.comment.body' }})
+ build_dir=$( cut -d ' ' -f 2 <<< '${{ github.event.comment.body }}' )
+ buckets=$( cut -d ' ' -f 3- <<< "${{ github.event.comment.body }}" )
24
echo $build_dir
25
+ echo $buckets
26
27
- name: 'Load PR Details'
28
id: load-pr
0 commit comments