fix(infra): standardize repo scripts on uv run#65
Open
lucasbsimao wants to merge 3 commits intoWorld-Open-Graph:mainfrom
Open
fix(infra): standardize repo scripts on uv run#65lucasbsimao wants to merge 3 commits intoWorld-Open-Graph:mainfrom
lucasbsimao wants to merge 3 commits intoWorld-Open-Graph:mainfrom
Conversation
Collaborator
|
Maintainer triage on March 8, 2026: refused for merge in this cycle and kept open. Blockers:
Required next step: narrow this to a minimal safe change or re-open it in a broader infra review cycle after rebasing. |
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.
Summary
This change standardizes repository-level bootstrap and quality entrypoints to execute through
uv runinstead of invokingpython3directly.It also adds a dedicated
/create-prworkflow so pull requests can be generated with the repository-required title and body structure.The result is more consistent local execution for contributors and less drift between documented Python tooling and the commands exposed by the repo.
Release metadata
Release note (PT-BR):
Padroniza a execução de scripts do repositório com
uv rune adiciona um fluxo guiado para criação de PRs.Release note (EN):
Standardizes repository script execution with
uv runand adds a guided workflow for creating PRs.Release highlights (PT-BR, bullets with
|):| Atualiza alvos do
Makefilee scripts públicos para usaruv run| Adiciona workflow
/create-prcom conformidade ao template e rotulagem automáticaRelease highlights (EN, bullets with
|):| Updates
Makefiletargets and public scripts to useuv run| Adds a
/create-prworkflow aligned with the PR template and auto-labelingIncluded pattern IDs (comma-separated, or
none):none
Technical changes (PT-BR, bullets with
|):| Substitui invocações diretas de
python3poruv run pythonnos entrypoints afetados| Adiciona
.python-versioncom Python 3.12 para alinhar o ambiente localTechnical changes (EN, bullets with
|):| Replaces direct
python3invocations withuv run pythonin affected entrypoints| Adds
.python-versionwith Python 3.12 to align the local runtimeChange type (choose one release label from taxonomy):
release:majorrelease:featurerelease:patternsrelease:apirelease:datarelease:privacyrelease:fixrelease:docsrelease:infrarelease:securityBreaking change?
Validation
Public safety and compliance checklist
PUBLIC_MODEbehavior was reviewed (if relevant)docs/release/public_boundary_matrix.csvRisk and rollback
The main risk is uncovering environments that still rely on calling
python3directly instead of the project-manageduvruntime.Rollback is straightforward: revert this branch or restore the previous
python3invocations in theMakefileand public bootstrap scripts, then recreate the PR without the workflow addition.