Skip to content

Commit e083008

Browse files
authored
fix(ci): remove verbose from workflow-info github action
* fix(ci): remove single quotes from the worflow-info github action * fix(ci): remove verbose from workflow-info github action
1 parent 07b1fae commit e083008

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/actions/workflow-info/action.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ inputs:
1515
content:
1616
description: 'Content to put in the report'
1717
required: false
18-
verbose:
19-
description: 'Output debug information in the job step'
20-
required: false
2118
outputs:
2219
status:
2320
description: "Return report status"
@@ -59,9 +56,7 @@ runs:
5956
6057
printf '\n## Context Information\n' >> "${GITHUB_STEP_SUMMARY}";
6158
echo '${{ toJson(runner) }}' | dump_ctx "Runner";
62-
if test -n "${{ inputs.verbose }}"; then
63-
echo '${{ toJson(github) }}' | dump_ctx "GitHub";
64-
fi
59+
echo '${{ toJson(job) }}' | dump_ctx "Job";
6560
6661
echo "status=finished" >> "${GITHUB_OUTPUT}";
6762
echo "::endgroup::"

0 commit comments

Comments
 (0)