summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <public@thanosapollo.org>2026-04-29 01:49:06 +0300
committerThanos Apollo <public@thanosapollo.org>2026-04-29 01:49:06 +0300
commitfbe87309f09476e931a3713b7f520ce727226eec (patch)
treea591cf364d846280eb0f2c4faa9bcbd9f726a9a0
parent1feef310af7d076bedf1f3d030a4c5ec87ea84da (diff)
readme: improve watch-rules example
-rw-r--r--README.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.org b/README.org
index 132b4e0..680f02c 100644
--- a/README.org
+++ b/README.org
@@ -90,9 +90,9 @@ Poll specific repos for new issues/PRs on a timer:
#+begin_src emacs-lisp
(setq forgejo-watch-rules
- '("thanosapollo/forgejo.el"
- ("guix/guix" . "state:open label:team-emacs")
- ("*" . "author:thanosapollo")))
+ '("thanosapollo/emacs-forgejo" ;; all for thanosapollo/emacs-forgejo repo
+ ("guix/guix" . "state:open label:team-emacs") ;; all state:open with team-emacs label
+ ("*" . "author:<your-username>"))) ;; everything in the db with author:<your-username>
(forgejo-watch-mode 1)
#+end_src