docs(forgejo): onboarding a repo is two remotes, not a mirror #206
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "docs/forgejo-repo-onboarding"
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?
The Mirroring section named home-config as a pull mirror from GitHub. It is not one (
is_mirror=0) and never has been - Flux reads the Forgejo copy, so a push to GitHub alone gets overwritten.platformis the only mirror on the instance, and only because it is a BlackNBrownStudios org repo this account does not own.Taking that line as the house pattern costs a GitHub credential inside Forgejo for nothing. Replaces it with what the personal repos actually do, plus three things that are invisible from the UI and were each verified against the live instance:
owner_id=0, repo_id=0), so a new repo needs no registration stepCLOUDFLARE_API_TOKEN, theCLOUDFLARE_*_ZONE_IDpair andSLACK_BOT_TOKENare set on no repo on this instance, so those workflow jobs have always no-opped through their empty-value guardsAlso adds the scripted onboarding path (create repo, push, set secrets) so the next one does not go through the UI.
Docs only, no manifest change.