diff --git a/.github/actions/create-pull-request/action.yml b/.github/actions/create-pull-request/action.yml index 6e9696610b..d90d22315e 100644 --- a/.github/actions/create-pull-request/action.yml +++ b/.github/actions/create-pull-request/action.yml @@ -30,6 +30,9 @@ inputs: runs: using: 'composite' steps: + - name: '📝 Print Inputs' + shell: 'bash' + run: 'echo "${{ toJSON(inputs) }}"' - name: 'Create and Approve Pull Request' if: "inputs.dry-run != 'true'" env: diff --git a/.github/actions/post-coverage-comment/action.yml b/.github/actions/post-coverage-comment/action.yml index 6862e6be1f..4622f2c68a 100644 --- a/.github/actions/post-coverage-comment/action.yml +++ b/.github/actions/post-coverage-comment/action.yml @@ -27,6 +27,9 @@ inputs: runs: using: 'composite' steps: + - name: '📝 Print Inputs' + shell: 'bash' + run: 'echo "${{ toJSON(inputs) }}"' - name: 'Prepare Coverage Comment' id: 'prep_coverage_comment' shell: 'bash' diff --git a/.github/actions/publish-release/action.yml b/.github/actions/publish-release/action.yml index 5217ca763a..360a17b114 100644 --- a/.github/actions/publish-release/action.yml +++ b/.github/actions/publish-release/action.yml @@ -52,6 +52,10 @@ inputs: runs: using: 'composite' steps: + - name: '📝 Print Inputs' + shell: 'bash' + run: 'echo "${{ toJSON(inputs) }}"' + - name: '👤 Configure Git User' working-directory: '${{ inputs.working-directory }}' shell: 'bash' diff --git a/.github/actions/push-docker/action.yml b/.github/actions/push-docker/action.yml index d59f4be763..3b6280e248 100644 --- a/.github/actions/push-docker/action.yml +++ b/.github/actions/push-docker/action.yml @@ -18,6 +18,9 @@ inputs: runs: using: 'composite' steps: + - name: '📝 Print Inputs' + shell: 'bash' + run: 'echo "${{ toJSON(inputs) }}"' - name: 'Checkout' uses: 'actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955' # ratchet:actions/checkout@v4 with: diff --git a/.github/actions/push-sandbox/action.yml b/.github/actions/push-sandbox/action.yml index 704e35e071..d91bf380e7 100644 --- a/.github/actions/push-sandbox/action.yml +++ b/.github/actions/push-sandbox/action.yml @@ -28,6 +28,9 @@ inputs: runs: using: 'composite' steps: + - name: '📝 Print Inputs' + shell: 'bash' + run: 'echo "${{ toJSON(inputs) }}"' - name: 'Checkout' uses: 'actions/checkout@v4' with: diff --git a/.github/actions/run-tests/action.yml b/.github/actions/run-tests/action.yml index 195cd569e3..ecad7f0707 100644 --- a/.github/actions/run-tests/action.yml +++ b/.github/actions/run-tests/action.yml @@ -13,6 +13,9 @@ inputs: runs: using: 'composite' steps: + - name: '📝 Print Inputs' + shell: 'bash' + run: 'echo "${{ toJSON(inputs) }}"' - name: 'Run Tests' env: GEMINI_API_KEY: '${{ inputs.gemini_api_key }}' diff --git a/.github/actions/tag-npm-release/action.yml b/.github/actions/tag-npm-release/action.yml index cbc49d3d8d..8e2cd03a54 100644 --- a/.github/actions/tag-npm-release/action.yml +++ b/.github/actions/tag-npm-release/action.yml @@ -20,6 +20,10 @@ inputs: runs: using: 'composite' steps: + - name: '📝 Print Inputs' + shell: 'bash' + run: 'echo "${{ toJSON(inputs) }}"' + - name: 'Setup Node.js' uses: 'actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020' with: diff --git a/.github/actions/verify-release/action.yml b/.github/actions/verify-release/action.yml index 9ce089789a..9df307d013 100644 --- a/.github/actions/verify-release/action.yml +++ b/.github/actions/verify-release/action.yml @@ -21,6 +21,10 @@ inputs: runs: using: 'composite' steps: + - name: '📝 Print Inputs' + shell: 'bash' + run: 'echo "${{ toJSON(inputs) }}"' + - name: 'Checkout' uses: 'actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955' # ratchet:actions/checkout@v4 with: