Skip to content

Commit d86e1d7

Browse files
committed
fix: 🐛 Add additional input logging for better debugging in test workflow
1 parent 8d52552 commit d86e1d7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ jobs:
3232
name: "Testing Container: Write Job Summary?${{ inputs.write_job_summary }}"
3333
runs-on: ubuntu-latest
3434
steps:
35+
- name: Print Inputs
36+
run: |
37+
echo "Inputs(repository): ${{ inputs.repository }}"
38+
echo "Inputs(ref): ${{ inputs.ref }}"
39+
echo "Inputs(caller_token): ${{ inputs.caller_token }}"
40+
echo "Inputs(write_job_summary): ${{ inputs.write_job_summary }}"
41+
echo "Inputs(clone_repo): ${{ inputs.clone_repo }}"
42+
echo "Inputs(expect_error): ${{ inputs.expect_error }}"
43+
3544
- name: Checkout Repository to Test
3645
uses: actions/checkout@v4
3746
if: ${{ inputs.clone_repo }}

0 commit comments

Comments
 (0)