File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 1818 && (contains(github.event.comment.body, '!benchmark'))
1919 && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER')
2020 runs-on : ubuntu-latest
21+ outputs :
22+ benches : ${{ steps.bench-params.outputs.benches }}
2123 steps :
2224 - uses : actions/checkout@v5
2325 - name : Parse PR comment body
3234 echo "BENCHES\n$BENCHES"
3335 JSON=$(echo $BENCHES | jq -R -c 'split(" ")')
3436
35- echo "benches<<EOF" >> $GITHUB_OUTPUT
36- echo "$JSON" | tee -a $GITHUB_OUTPUT
37- echo "EOF" >> $GITHUB_OUTPUT
37+ #echo "benches<<EOF" >> $GITHUB_OUTPUT
38+ #echo "$JSON" | tee -a $GITHUB_OUTPUT
39+ #echo "EOF" >> $GITHUB_OUTPUT
40+ echo "JSON\n$JSON"
41+
42+ echo "benches=$JSON" | tee -a $GITHUB_OUTPUT
3843
3944 # Can't persist env vars between jobs, so we pass them as an output and set them in the next job
4045 echo "env-vars=$(tail -n +2 comment.txt)" | tee -a $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments