main
 1# lazypr custom actions configuration
 2# Placeholders: {url}, {urls}, {number}, {numbers}, {title}, {titles},
 3#               {author}, {authors}, {owner}, {repo}, {full_name}
 4
 5[[actions]]
 6name = "Copy URL(s)"
 7command = "echo -n {urls} | wl-copy"
 8interactive = false
 9
10[[actions]]
11name = "Open lazyworktree"
12command = "cd $(repo-find {full_name}) && lazyworktree"
13interactive = true
14
15[[actions]]
16name = "Create worktree from PR"
17command = "cd $(repo-find {full_name}) && lazyworktree create --from-pr {number}"
18interactive = true
19
20[[actions]]
21name = "Review with Claude"
22command = "gh-news-review -d -t claude {url}"
23interactive = false
24
25[[actions]]
26name = "Review with Claude (yolo)"
27command = "gh-news-review -d -y -t claude {url}"
28interactive = false
29
30[[actions]]
31name = "Review with Pi"
32command = "gh-news-review -d -t pi {url}"
33interactive = false
34
35[[actions]]
36name = "Review with Pi (yolo)"
37command = "gh-news-review -d -y -t pi {url}"
38interactive = false