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 1c123d7 commit eabbe70Copy full SHA for eabbe70
1 file changed
action.yml
@@ -45,10 +45,16 @@ inputs:
45
description: post results to the pull request comments
46
required: false
47
default: false
48
+
49
+outputs:
50
+ pr_comments:
51
+ description: The formatted PR comment body containing commit-check results
52
+ value: ${{ steps.commit-check.outputs.pr_comments }}
53
54
runs:
55
using: "composite"
56
steps:
- - id: run
57
+ - id: commit-check
58
name: Install dependencies and run commit-check
59
shell: bash
60
run: |
@@ -85,8 +91,3 @@ runs:
85
91
DRY_RUN: ${{ inputs.dry-run }}
86
92
JOB_SUMMARY: ${{ inputs.job-summary }}
87
93
PR_COMMENTS: ${{ inputs.pr-comments }}
88
-
89
-outputs:
90
- pr_comments:
- description: The formatted PR comment body containing commit-check results
- value: ${{ steps.run.outputs.pr_comments }}
0 commit comments