Summary
This PR tidies up the codebase by recompiling workflows to normalize the include order in generated lock files.
Changes Made
Workflow Recompilation : Ran make recompile to ensure all workflow files are up to date
Include Order Normalization : The dev.lock.yml file now has includes listed in consistent alphabetical order in the resolved manifest comment
Validation Steps Completed
✅ Code Formatting : Ran make fmt - no formatting changes needed
✅ Linting : Ran make lint - all linting checks passed
✅ Workflow Recompilation : Ran make recompile - workflows recompiled successfully
✅ Tests : Ran make test - all tests passing (3.017s for main, 4.246s for workflow package)
Details
The only change is in .github/workflows/dev.lock.yml where the include order in the comment header was normalized:
shared/use-emojis.md and shared/keep-it-short.md are now listed alphabetically
This is a cosmetic change that ensures consistency in the generated workflow files and doesn't affect functionality.
Impact
No Breaking Changes : This is purely a formatting/consistency update
No Functional Changes : The workflow behavior remains identical
Code Quality : Maintains consistency in generated files
AI generated by Tidy
Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download patch artifact
The patch file is available as an artifact (aw.patch) in the workflow run linked above.
To apply the patch locally:
# Download the artifact from the workflow run
gh run download 18287326874 -n aw.patch
# Apply the patch
git am aw.patch
Summary
This PR tidies up the codebase by recompiling workflows to normalize the include order in generated lock files.
Changes Made
make recompileto ensure all workflow files are up to datedev.lock.ymlfile now has includes listed in consistent alphabetical order in the resolved manifest commentValidation Steps Completed
make fmt- no formatting changes neededmake lint- all linting checks passedmake recompile- workflows recompiled successfullymake test- all tests passing (3.017s for main, 4.246s for workflow package)Details
The only change is in
.github/workflows/dev.lock.ymlwhere the include order in the comment header was normalized:shared/use-emojis.mdandshared/keep-it-short.mdare now listed alphabeticallyThis is a cosmetic change that ensures consistency in the generated workflow files and doesn't affect functionality.
Impact
Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download patch artifact
The patch file is available as an artifact (
aw.patch) in the workflow run linked above.To apply the patch locally: