aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralex <alex@pdp7.net>2026-05-19 22:51:05 +0200
committeralex <alex@pdp7.net>2026-05-19 22:51:34 +0200
commitd535d93266d218871342be6dabdb0fa55fe69776 (patch)
tree0572c836dcd0ebd79b4eadf3d807d8d4b01200a0
parentb2cfe8fb250e9356a0afca46155786c01138c72a (diff)
Add /notes/tech/what-i-would-like-to-see-in-a-forgemaster
-rw-r--r--blog/content/notes/index.gmi1
-rw-r--r--blog/content/notes/tech/what-i-would-like-to-see-in-a-forge.gmi35
2 files changed, 36 insertions, 0 deletions
diff --git a/blog/content/notes/index.gmi b/blog/content/notes/index.gmi
index 39ac1ec9..286c695d 100644
--- a/blog/content/notes/index.gmi
+++ b/blog/content/notes/index.gmi
@@ -40,6 +40,7 @@ Notes about some books and long articles I like:
=> tech/on-software-development On software development
=> tech/internet-basics Internet basics
=> tech/splicing-mkvs Splicing MKVs
+=> tech/what-i-would-like-to-see-in-a-forge What I would like to see in a forge
### Gadgets
diff --git a/blog/content/notes/tech/what-i-would-like-to-see-in-a-forge.gmi b/blog/content/notes/tech/what-i-would-like-to-see-in-a-forge.gmi
new file mode 100644
index 00000000..3d47c4b1
--- /dev/null
+++ b/blog/content/notes/tech/what-i-would-like-to-see-in-a-forge.gmi
@@ -0,0 +1,35 @@
+# What I would like to see in a forge
+
+=> https://lobste.rs/s/wed6lj/what_would_you_want_from_forge Inspired by "what would you want from a forge" in Lobsters.
+
+## Merge queue-oriented
+
+(This is mostly inspired by Gerrit.)
+
+The forge should provide a merge queue implementation. The merge queue should work around individual commits.
+
+The forge scans continuously for new commits targetting a branch. If a commit is mergeable to main, then the forge runs static validation on the merge of the commit to the target branch. Commits that pass human validation requirements and static validation, get merged to their target branch.
+
+The forge should make it easy to list pending merge changes with clear display and filtering of unmet merge requirements.
+
+## Change-id aware
+
+All features of the forge that can benefit from change-id usage should do that.
+
+I want to be able to list the tags/releases with a specific change.
+
+I want the forge to mark a change as "pending deployment" when the change is in main, but not in the "production" branch, and mark the change as "done" when the change is in the production branch.
+
+## Author as approver option
+
+The forge should allow configuration where a change submitter can approve their own changes.
+
+For example, you might establish that all changes need a reviewer, but authors are (socially) allowed to approve their own trivial changes (e.g. typo fixes, etc.).
+
+(Lack of author approval might also be treated as a sort of "draft" status.)
+
+## Commit message review
+
+(Also present in Gerrit.)
+
+Commit messages should be reviewable/editable in the forge just like the rest of a change.