We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d52552 commit d86e1d7Copy full SHA for d86e1d7
.github/workflows/test.yml
@@ -32,6 +32,15 @@ jobs:
32
name: "Testing Container: Write Job Summary?${{ inputs.write_job_summary }}"
33
runs-on: ubuntu-latest
34
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
+
44
- name: Checkout Repository to Test
45
uses: actions/checkout@v4
46
if: ${{ inputs.clone_repo }}
0 commit comments