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
6 changes: 4 additions & 2 deletions .github/workflows/python-type-checking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,17 @@ jobs:
echo "count=$COUNT" >> $GITHUB_OUTPUT

- name: Find existing comment
uses: peter-evans/find-comment@v3
uses: peter-evans/find-comment@v4
id: find-comment
with:
issue-number: ${{ github.event.pull_request.number }}
comment-author: 'github-actions[bot]'
body-includes: Python Type Checking

- name: Create or update PR comment
uses: peter-evans/create-or-update-comment@v4
# Skip if the PR event is triggered by a fork to avoid permission issues when trying to update comments
if: github.event.pull_request.head.repo.full_name == github.repository
uses: peter-evans/create-or-update-comment@v5
with:
comment-id: ${{ steps.find-comment.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
Expand Down
Loading