dashboard / pico / style(prose): update smol.css #21 rss

accepted · opened on 2024-09-16T02:48:20Z by erock
Help
# add changes to patch request
git format-patch main --stdout | ssh pr.pico.sh pr add 21
# add review to patch request
git format-patch main --stdout | ssh pr.pico.sh pr add --review 21
# remove patchset
ssh pr.pico.sh ps rm ps-x
# checkout all patches
ssh pr.pico.sh pr print 21 | git am -3
# print a diff between the last two patches in a patch request
ssh pr.pico.sh pr diff 21
# accept PR
ssh pr.pico.sh pr accept 21
# close PR
ssh pr.pico.sh pr close 21

Logs

in0rdr created pr with ps-37 on 2024-08-29T14:09:39Z
erock changed status on 2024-09-16T02:57:43Z {"status":"accepted"}
erock changed status on 2024-11-06T15:04:46Z {"status":"accepted"}

Patchsets

ps-37 by in0rdr on 2024-08-29T14:09:39Z

Patchset ps-37

feat: improve documentation

Andreas Gruhler
2024-08-28T22:37:42Z
git-pr.toml
+3 -1
Back to top

feat: improve documentation

This improves documentation by stating the admin list needs to be
populated with ssh pubkeys and that the config file repos can be
configured with a default_branch name to show in the help text.
git-pr.toml link
+3 -1
 1diff --git a/git-pr.toml b/git-pr.toml
 2index 1f81883..5546e6d 100644
 3--- a/git-pr.toml
 4+++ b/git-pr.toml
 5@@ -2,7 +2,8 @@
 6 url = "localhost"
 7 # where we store the sqlite db, this toml file, git repos, and ssh host keys
 8 data_dir = "./data"
 9-# this gives users the ability to submit reviews and other admin permissions
10+# list of admin ssh pubkeys, authorized to submit review and other admin
11+# permissions
12 admins = []
13 # set datetime format for our clients
14 time_format = "2006-01-02"
15@@ -10,5 +11,6 @@ time_format = "2006-01-02"
16 # add as many repos as you want
17 [[repo]]
18 id = "test"
19+default_branch = "main"
20 clone_addr = "https://github.com/picosh/test.git"
21 desc = "Test repo"