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

accepted · opened on 2024-09-16T02:48:20Z by erock
Help
checkout latest patchset:
ssh pr.pico.sh print pr-21 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print ps-X | git am -3
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
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
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/git-pr.toml b/git-pr.toml
index 1f81883..5546e6d 100644
--- a/git-pr.toml
+++ b/git-pr.toml
@@ -2,7 +2,8 @@
 url = "localhost"
 # where we store the sqlite db, this toml file, git repos, and ssh host keys
 data_dir = "./data"
-# this gives users the ability to submit reviews and other admin permissions
+# list of admin ssh pubkeys, authorized to submit review and other admin
+# permissions
 admins = []
 # set datetime format for our clients
 time_format = "2006-01-02"
@@ -10,5 +11,6 @@ time_format = "2006-01-02"
 # add as many repos as you want
 [[repo]]
 id = "test"
+default_branch = "main"
 clone_addr = "https://github.com/picosh/test.git"
 desc = "Test repo"