Fix copilot-setup-steps workflow#1390
Merged
jonathanpeppers merged 4 commits intomainfrom Apr 1, 2026
Merged
Conversation
The workflow failed with 'mkdir: cannot create directory: Permission denied' when creating directories on /mnt. Use sudo to create the directories and chmod to make them writable. Also added push/pull_request triggers so the workflow runs on PRs that edit it. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Updates the copilot-setup-steps GitHub Actions workflow to both (1) run automatically when the workflow file changes and (2) fix permissions when creating build directories under /mnt on hosted runners.
Changes:
- Add
pushandpull_requesttriggers filtered to.github/workflows/copilot-setup-steps.yml. - Create
/mntbuild directories usingsudoand apply writable permissions.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
The symlinks were created as externals-link and generated-link, but the build and cache steps use ./externals and ./generated. Rename so the secondary disk is actually used. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
The du commands scan the entire filesystem, taking ~1m45s per call. Replace with just 'df -h' which returns instantly. Remove the detailed input option and its callers. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0d66b89 to
b902531
Compare
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.
Fixes several issues with the
copilot-setup-stepsworkflow:sudo mkdirandsudo chmodto create build directories on the secondary diskexternals-link/generated-linktoexternals/generatedso the build actually uses the secondary disklog-disk-spaceaction to justdf -h— theducommands were scanning the entire filesystem (~1m45s per call)pull_requesttrigger so changes to the workflow are validated before merge