docs: record that main is reached by pr because push runs no ci #4
Loading…
Reference in a new issue
No description provided.
Delete branch "docs/record-pr-workflow"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
.forgejo/workflows/test.ymltriggers onworkflow_callandpull_requestonly. There is nopushtrigger, so commits pushed straight tomainare never linted, typechecked, or tested.Every Actions run in this repo so far has
event: pull_request, which confirms it — today's work onmaincarries no CI record.The workflows are template-owned (only ever changed by
chore: rebuild dev env from templatesandci: gate tests on code quality and sync the template baseline), so apushtrigger belongs in$DEV_DIR/templates, not in a local edit here. This records the branch-and-PR convention instead.Also notes
uv lock --check, whichcode-quality.ymlruns andmake pre-commitdoes not — a stale lock passesuv sync --frozensilently.This PR is itself the first use of the convention.