Fix: update the playlist-track file permissions from 755 to 644#76315
Merged
ramonjd merged 1 commit intoWordPress:trunkfrom Mar 12, 2026
Merged
Fix: update the playlist-track file permissions from 755 to 644#76315ramonjd merged 1 commit intoWordPress:trunkfrom
ramonjd merged 1 commit intoWordPress:trunkfrom
Conversation
|
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message. To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
ramonjd
approved these changes
Mar 12, 2026
Member
There was a problem hiding this comment.
Well spotted!! Thanks for the PR 🙇🏻 LGTM
Before
[trunk] $ git ls-tree trunk packages/block-library/src/playlist-track/
100755 blob 37ae9996f9fd41b32c10332865c12d971172465c packages/block-library/src/playlist-track/block.json
100755 blob 7da2c6375323d8606578937a526e5df12eaa5c86 packages/block-library/src/playlist-track/edit.js
100755 blob cfaa381675ed09fda651c2cb0c04682d7d0a3611 packages/block-library/src/playlist-track/index.js
100755 blob bc56a38a08e85138927c9803b9f2c072cf4e019d packages/block-library/src/playlist-track/index.php
100755 blob 79f0492c2cb2f87fee9a8a970d6356baea692f05 packages/block-library/src/playlist-track/init.js
100755 blob 05b722c7fa857b5fb7af3f545f472e39cb633121 packages/block-library/src/playlist-track/style.scss
After
[fix/playlist-track-file-permissions] $ git ls-tree fix/playlist-track-file-permissions packages/block-library/src/playlist-track/
100644 blob 37ae9996f9fd41b32c10332865c12d971172465c packages/block-library/src/playlist-track/block.json
100644 blob 7da2c6375323d8606578937a526e5df12eaa5c86 packages/block-library/src/playlist-track/edit.js
100644 blob cfaa381675ed09fda651c2cb0c04682d7d0a3611 packages/block-library/src/playlist-track/index.js
100644 blob bc56a38a08e85138927c9803b9f2c072cf4e019d packages/block-library/src/playlist-track/index.php
100644 blob 79f0492c2cb2f87fee9a8a970d6356baea692f05 packages/block-library/src/playlist-track/init.js
100644 blob 05b722c7fa857b5fb7af3f545f472e39cb633121 packages/block-library/src/playlist-track/style.scss
Also rebuilt the project and smoke tested playlist block for good measure 🚀
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What?
Update the permissions of files in packages/block-library/src/playlist-track from 755 to 644.
Why?
The executable permissions on these files seems to have been added by mistake and the files should have the same permissions as the rest of the source files.
How?
Changed the permissions from 755 to 644.
Testing Instructions
Code review should be sufficient in this case.