Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ runs:

- name: Find Comment
uses: peter-evans/find-comment@v3
if: env.INPUT_SETUP_DEPS == 'true'
if: inputs.check-mode == 'payload' && env.INPUT_GITHUB_TOKEN
id: fc
with:
issue-number: ${{ env.GITHUB_EVENT_PULL_REQUEST_NUMBER }}
Expand All @@ -277,7 +277,7 @@ runs:

- name: Post comment
uses: peter-evans/create-or-update-comment@v4
if: env.INPUT_SETUP_DEPS == 'true'
if: inputs.check-mode == 'payload' && env.INPUT_GITHUB_TOKEN
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
issue-number: ${{ env.GITHUB_EVENT_PULL_REQUEST_NUMBER }}
Expand Down
Loading