Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/deleted-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- name: Get changed docs md files
id: changed-files
uses: tj-actions/changed-files@48d8f15b2aaa3d255ca5af3eba4870f807ce6b3c # v45
uses: tj-actions/changed-files@9426d40962ed5378910ee2e21d5f8c6fcbf2dd96 # v47.0.6
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 HIGH RISK

This version bump introduces a logic change: renamed files are no longer tracked by the any_deleted output. This will cause the redirect reminder comment to be skipped for PRs that only rename files. Try running the following prompt in your coding agent: > Update .github/workflows/deleted-files.yml to handle renamed files by changing the condition at line 32 to steps.changed-files.outputs.any_deleted == 'true' || steps.changed-files.outputs.any_renamed == 'true'. Also, update line 26 to use steps.changed-files.outputs.renamed_files_old to ensure the redirect reminder shows the original file paths.

with:
files: docs/**/*.md

Expand Down
Loading