Skip to content

Commit c5b55a8

Browse files
fix status comment action
1 parent 3398f01 commit c5b55a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/status-comment/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ runs:
3535
if [[ -f "$FILE" ]]; then
3636
cat "$FILE"
3737
else
38-
echo "${{ input.body }}"
38+
echo "${{ inputs.body }}"
3939
fi
4040
echo
4141
echo "${{ steps.marker.outputs.marker }"
@@ -49,7 +49,7 @@ runs:
4949
with:
5050
issue-number: ${{ inputs.issue-number }}
5151
comment-author: "github-actions[bot]"
52-
body-includes: ${{ steps.marker.outputs.marker }
52+
body-includes: ${{ steps.marker.outputs.marker }}
5353

5454
- name: Create or update PR comment
5555
if: github.event_name == 'pull_request' && steps.comment.outputs.comment-id != ''

0 commit comments

Comments
 (0)