We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cce01d4 commit bfec87bCopy full SHA for bfec87b
.github/workflows/_sandbox.yaml
@@ -16,8 +16,8 @@ jobs:
16
- name: Print
17
run: |
18
echo "Hello, world!"
19
- echo "TEST: ${{ github.event.inputs.TEST }}"
20
- echo "${{ fromJson(github.event.inputs.TEST).a }}"
21
- echo "${{ fromJson(github.event.inputs.TEST).b }}"
22
- # echo "${{ github.event.inputs.TEST.a }}"
23
- # echo "${{ github.event.inputs.TEST.b }}"
+ echo "TEST: ${{ inputs.TEST }}"
+ echo "{{ fromJson(inputs.TEST).a }}"
+ echo "{{ fromJson(inputs.TEST).b }}"
+ echo "{{ inputs.TEST.a }}"
+ echo "{{ inputs.TEST.b }}"
0 commit comments