feat: add ci/cd templates #124
No reviewers
Labels
No labels
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
thwap/thwap-pagesd!124
Loading…
Reference in a new issue
No description provided.
Delete branch "feat/cicd-and-hygiene"
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?
Review Summary
Solid CI/CD scaffold. The
go-changesgate is a smart touch — workflows skip all Go steps until Go code actually exists in the repo, so nothing breaks on the current emptymain.No blocking issues.
Minor non-blocking observations (not blocking this merge):
ci.ymlgofmt check only covers./cmd ./internal— consider./...to include/pkgonce the codebase grows.go vetis redundant with golangci-lint (govet enabled) — harmless duplication.release.ymlgenerate_release_notes: trueis a GitHub-only feature and will be ignored on Forgejo — the release still creates fine..golangci.ymlis still untracked locally; commit it (with thegoimports.local-prefixesmodule path fixed) alongside the first Go code PR so the lint job matches intent.Merging this gets CI templates in place for the upcoming work.