File tree Expand file tree Collapse file tree 12 files changed +38
-15
lines changed Expand file tree Collapse file tree 12 files changed +38
-15
lines changed Original file line number Diff line number Diff line change 32
32
steps :
33
33
- name : ' 📝 Print Inputs'
34
34
shell : ' bash'
35
- run : ' echo "${{ toJSON(inputs) }}"'
35
+ env :
36
+ JSON_INPUTS : ' ${{ toJSON(inputs) }}'
37
+ run : ' echo "$JSON_INPUTS"'
36
38
- name : ' Creates a Pull Request'
37
39
if : " inputs.dry-run != 'true'"
38
40
env :
Original file line number Diff line number Diff line change 29
29
steps :
30
30
- name : ' 📝 Print Inputs'
31
31
shell : ' bash'
32
- run : ' echo "${{ toJSON(inputs) }}"'
32
+ env :
33
+ JSON_INPUTS : ' ${{ toJSON(inputs) }}'
34
+ run : ' echo "$JSON_INPUTS"'
33
35
- name : ' Prepare Coverage Comment'
34
36
id : ' prep_coverage_comment'
35
37
shell : ' bash'
Original file line number Diff line number Diff line change 57
57
steps :
58
58
- name : ' 📝 Print Inputs'
59
59
shell : ' bash'
60
- run : ' echo "${{ toJSON(inputs) }}"'
60
+ env :
61
+ JSON_INPUTS : ' ${{ toJSON(inputs) }}'
62
+ run : ' echo "$JSON_INPUTS"'
61
63
62
64
- name : ' 👤 Configure Git User'
63
65
working-directory : ' ${{ inputs.working-directory }}'
Original file line number Diff line number Diff line change 20
20
steps :
21
21
- name : ' 📝 Print Inputs'
22
22
shell : ' bash'
23
- run : ' echo "${{ toJSON(inputs) }}"'
23
+ env :
24
+ JSON_INPUTS : ' ${{ toJSON(inputs) }}'
25
+ run : ' echo "$JSON_INPUTS"'
24
26
- name : ' Checkout'
25
27
uses : ' actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955' # ratchet:actions/checkout@v4
26
28
with :
Original file line number Diff line number Diff line change 30
30
steps :
31
31
- name : ' 📝 Print Inputs'
32
32
shell : ' bash'
33
- run : ' echo "${{ toJSON(inputs) }}"'
33
+ env :
34
+ JSON_INPUTS : ' ${{ toJSON(inputs) }}'
35
+ run : ' echo "$JSON_INPUTS"'
34
36
- name : ' Checkout'
35
37
uses : ' actions/checkout@v4'
36
38
with :
Original file line number Diff line number Diff line change 15
15
steps :
16
16
- name : ' 📝 Print Inputs'
17
17
shell : ' bash'
18
- run : ' echo "${{ toJSON(inputs) }}"'
18
+ env :
19
+ JSON_INPUTS : ' ${{ toJSON(inputs) }}'
20
+ run : ' echo "$JSON_INPUTS"'
19
21
- name : ' Run Tests'
20
22
env :
21
23
GEMINI_API_KEY : ' ${{ inputs.gemini_api_key }}'
Original file line number Diff line number Diff line change 23
23
steps :
24
24
- name : ' 📝 Print Inputs'
25
25
shell : ' bash'
26
- run : ' echo "${{ toJSON(inputs) }}"'
26
+ env :
27
+ JSON_INPUTS : ' ${{ toJSON(inputs) }}'
28
+ run : ' echo "$JSON_INPUTS"'
27
29
28
30
- name : ' Setup Node.js'
29
31
uses : ' actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020'
Original file line number Diff line number Diff line change 23
23
steps :
24
24
- name : ' 📝 Print Inputs'
25
25
shell : ' bash'
26
- run : ' echo "${{ toJSON(inputs) }}"'
26
+ env :
27
+ JSON_INPUTS : ' ${{ toJSON(inputs) }}'
28
+ run : ' echo "$JSON_INPUTS"'
27
29
28
30
- name : ' Checkout'
29
31
uses : ' actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955' # ratchet:actions/checkout@v4
Original file line number Diff line number Diff line change 65
65
fetch-depth : 0
66
66
67
67
- name : ' Debug Inputs'
68
- run : ' echo "${{ toJSON(inputs) }}"'
68
+ shell : ' bash'
69
+ env :
70
+ JSON_INPUTS : ' ${{ toJSON(inputs) }}'
71
+ run : ' echo "$JSON_INPUTS"'
69
72
70
73
- name : ' Setup Node.js'
71
74
uses : ' actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020'
Original file line number Diff line number Diff line change 53
53
run : ' npm ci'
54
54
55
55
- name : ' Print Inputs'
56
- run : |
57
- echo "${{ toJSON(github.event.inputs) }}"
56
+ shell : ' bash'
57
+ env :
58
+ JSON_INPUTS : ' ${{ toJSON(github.event.inputs) }}'
59
+ run : ' echo "$JSON_INPUTS"'
58
60
59
61
- name : ' Run Tests'
60
62
if : " ${{ github.event_name == 'schedule' || github.event.inputs.force_skip_tests == 'false' }}"
You can’t perform that action at this time.
0 commit comments