Skip to content

Commit c2e7182

Browse files
authored
fix 4
1 parent e557ef7 commit c2e7182

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/expression-functions.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,18 @@ jobs:
2929
- name: Join issue labels
3030
if: github.event_name == 'issues'
3131
run: |
32-
echo "Issue labels:"
33-
echo "${{ toJSON(github.event.issue.labels) }}"
32+
echo "Issue labels:"
33+
echo "${{ toJSON(github.event.issue.labels) }}"
3434
3535
- name: Convert job context to JSON
36-
run: echo "Job context in JSON: ${{ toJSON(github.job) }}"
36+
run: |
37+
echo "Job context in JSON:"
38+
echo "${{ toJSON(job) }}"
3739
3840
- name: Parse JSON string
39-
run: echo "Parsed JSON: ${{ fromJSON('{\"hello\":\"world\"}').hello }}"
41+
run: |
42+
echo "Parsed JSON:"
43+
echo "${{ fromJSON('{\"hello\":\"world\"}').hello }}"
4044
4145
- name: Hash files
4246
run: echo "Hash of files: ${{ hashFiles('**/package-lock.json', '**/Gemfile.lock') }}"

0 commit comments

Comments
 (0)