Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/actions/create-pull-request/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/post-coverage-comment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ runs:
steps:
- name: 'πŸ“ Print Inputs'
shell: 'bash'
run: 'echo "${{ toJSON(inputs) }}"'
env:
JSON_INPUTS: '${{ toJSON(inputs) }}'
run: 'echo "$JSON_INPUTS"'
- name: 'Prepare Coverage Comment'
id: 'prep_coverage_comment'
shell: 'bash'
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/publish-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ runs:
steps:
- name: 'πŸ“ Print Inputs'
shell: 'bash'
run: 'echo "${{ toJSON(inputs) }}"'
env:
JSON_INPUTS: '${{ toJSON(inputs) }}'
run: 'echo "$JSON_INPUTS"'

- name: 'πŸ‘€ Configure Git User'
working-directory: '${{ inputs.working-directory }}'
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/push-docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ runs:
steps:
- name: 'πŸ“ Print Inputs'
shell: 'bash'
run: 'echo "${{ toJSON(inputs) }}"'
env:
JSON_INPUTS: '${{ toJSON(inputs) }}'
run: 'echo "$JSON_INPUTS"'
- name: 'Checkout'
uses: 'actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955' # ratchet:actions/checkout@v4
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/push-sandbox/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ runs:
steps:
- name: 'πŸ“ Print Inputs'
shell: 'bash'
run: 'echo "${{ toJSON(inputs) }}"'
env:
JSON_INPUTS: '${{ toJSON(inputs) }}'
run: 'echo "$JSON_INPUTS"'
- name: 'Checkout'
uses: 'actions/checkout@v4'
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/run-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ runs:
steps:
- name: 'πŸ“ Print Inputs'
shell: 'bash'
run: 'echo "${{ toJSON(inputs) }}"'
env:
JSON_INPUTS: '${{ toJSON(inputs) }}'
run: 'echo "$JSON_INPUTS"'
- name: 'Run Tests'
env:
GEMINI_API_KEY: '${{ inputs.gemini_api_key }}'
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/tag-npm-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ runs:
steps:
- name: 'πŸ“ Print Inputs'
shell: 'bash'
run: 'echo "${{ toJSON(inputs) }}"'
env:
JSON_INPUTS: '${{ toJSON(inputs) }}'
run: 'echo "$JSON_INPUTS"'

- name: 'Setup Node.js'
uses: 'actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020'
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/verify-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ runs:
steps:
- name: 'πŸ“ Print Inputs'
shell: 'bash'
run: 'echo "${{ toJSON(inputs) }}"'
env:
JSON_INPUTS: '${{ toJSON(inputs) }}'
run: 'echo "$JSON_INPUTS"'

- name: 'Checkout'
uses: 'actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955' # ratchet:actions/checkout@v4
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ jobs:
fetch-depth: 0

- name: 'Debug Inputs'
run: 'echo "${{ toJSON(inputs) }}"'
shell: 'bash'
env:
JSON_INPUTS: '${{ toJSON(inputs) }}'
run: 'echo "$JSON_INPUTS"'

- name: 'Setup Node.js'
uses: 'actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020'
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,10 @@ jobs:
run: 'npm ci'

- name: 'Print Inputs'
run: |
echo "${{ toJSON(github.event.inputs) }}"
shell: 'bash'
env:
JSON_INPUTS: '${{ toJSON(github.event.inputs) }}'
run: 'echo "$JSON_INPUTS"'

- name: 'Run Tests'
if: "${{github.event.inputs.force_skip_tests == 'false'}}"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release-patch-3-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ jobs:

- name: 'Print Inputs'
shell: 'bash'
run: |-
echo "${{ toJSON(inputs) }}"
env:
JSON_INPUTS: '${{ toJSON(inputs) }}'
run: 'echo "$JSON_INPUTS"'

- name: 'Get Patch Version'
id: 'patch_version'
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release-promote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ jobs:

- name: 'Print Inputs'
shell: 'bash'
run: |-
echo "${{ toJSON(inputs) }}"
env:
JSON_INPUTS: '${{ toJSON(inputs) }}'
run: 'echo "$JSON_INPUTS"'

- name: 'Calculate Versions and SHAs'
id: 'versions'
Expand Down