File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,18 @@ jobs:
29
29
- name : Join issue labels
30
30
if : github.event_name == 'issues'
31
31
run : |
32
- echo "Issue labels:"
33
- echo "${{ toJSON(github.event.issue.labels) }}"
32
+ echo "Issue labels:"
33
+ echo "${{ toJSON(github.event.issue.labels) }}"
34
34
35
35
- 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) }}"
37
39
38
40
- 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 }}"
40
44
41
45
- name : Hash files
42
46
run : echo "Hash of files: ${{ hashFiles('**/package-lock.json', '**/Gemfile.lock') }}"
You can’t perform that action at this time.
0 commit comments