Fix quoting when echoing workflow JSON (#10596)

This commit is contained in:
Adam Weidman
2025-10-07 18:10:52 +02:00
committed by GitHub
parent d93e987f24
commit 6bb99806f0
12 changed files with 38 additions and 15 deletions

View File

@@ -32,7 +32,9 @@ runs:
steps:
- name: '📝 Print Inputs'
shell: 'bash'
run: 'echo "${{ toJSON(inputs) }}"'
env:
JSON_INPUTS: '${{ toJSON(inputs) }}'
run: 'echo "$JSON_INPUTS"'
- name: 'Creates a Pull Request'
if: "inputs.dry-run != 'true'"
env: