1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Template used by the release workflow to auto-update the Homebrew tap.
# {{VERSION}}, {{MACOS_ARM_SHA}}, {{MACOS_X86_SHA}}, {{LINUX_ARM_SHA}},
# {{LINUX_X86_SHA}} are replaced by the update-homebrew-tap CI job.
#
# Manual setup (one-time):
# 1. Create repo MykytaStel/homebrew-repopilot with a Formula/ directory.
# 2. Add HOMEBREW_TAP_TOKEN (PAT with repo write scope) to the main repo secrets.
# After that, every v* tag triggers an automatic formula update.
#
# Manual install:
# brew tap mykytastel/repopilot
# brew install repopilot
desc
homepage
version
license
on_macos do
on_arm do
url
sha256
end
on_intel do
url
sha256
end
end
on_linux do
on_arm do
url
sha256
end
on_intel do
url
sha256
end
end
bin.install
end
test do
system ,
end
end