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 07b1fae commit e083008Copy full SHA for e083008
.github/actions/workflow-info/action.yaml
@@ -15,9 +15,6 @@ inputs:
15
content:
16
description: 'Content to put in the report'
17
required: false
18
- verbose:
19
- description: 'Output debug information in the job step'
20
- required: false
21
outputs:
22
status:
23
description: "Return report status"
@@ -59,9 +56,7 @@ runs:
59
56
60
57
printf '\n## Context Information\n' >> "${GITHUB_STEP_SUMMARY}";
61
58
echo '${{ toJson(runner) }}' | dump_ctx "Runner";
62
- if test -n "${{ inputs.verbose }}"; then
63
- echo '${{ toJson(github) }}' | dump_ctx "GitHub";
64
- fi
+ echo '${{ toJson(job) }}' | dump_ctx "Job";
65
66
echo "status=finished" >> "${GITHUB_OUTPUT}";
67
echo "::endgroup::"
0 commit comments