Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Formula/mergify-cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class MergifyCli < Formula
# still auto-detects the version from the version-named asset URL. Declaring
# `version` here would trip `brew audit --strict`'s "redundant with version
# scanned from URL" check.
RELEASE = "2026.6.18.1".freeze
RELEASE = "2026.6.25.1".freeze

livecheck do
url :stable
Expand All @@ -17,22 +17,22 @@ class MergifyCli < Formula
on_macos do
on_arm do
url "https://github.com/Mergifyio/mergify-cli/releases/download/#{RELEASE}/mergify-#{RELEASE}-aarch64-apple-darwin.tar.gz"
sha256 "a95d0722968fb59a7f1105308703cc932b49b45ee7ee9ed2f9fc11d9695c551a"
sha256 "008ec6b4d62f10ee0eee1bb53cff30af0f778481e6894be9be6f2fad0d99b992"
end
on_intel do
url "https://github.com/Mergifyio/mergify-cli/releases/download/#{RELEASE}/mergify-#{RELEASE}-x86_64-apple-darwin.tar.gz"
sha256 "88badfa86d9a3dc75d0124a2da315594571a41f5cfb53dc92cc2b4f5e79f37e6"
sha256 "1fb1b4b56b2c13bc3c259d64ff46b1e4d1e83fd41b35395e69c796b27912cacd"
end
end

on_linux do
on_arm do
url "https://github.com/Mergifyio/mergify-cli/releases/download/#{RELEASE}/mergify-#{RELEASE}-aarch64-unknown-linux-gnu.tar.gz"
sha256 "e031cc5d34c7064f0478cc1de64591021e6452c07bb32f87087aefa28634688c"
sha256 "675c8f06fe87a9cdfa68c3f60586350f8207b349d7635a8998ccc999a9cce905"
end
on_intel do
url "https://github.com/Mergifyio/mergify-cli/releases/download/#{RELEASE}/mergify-#{RELEASE}-x86_64-unknown-linux-gnu.tar.gz"
sha256 "50e6e47356637b59f27affc50d453d3e2084895dc843c3b9d6000b176198ecd2"
sha256 "3df13aac5c39c64c91de49125f59b3b0cc2fd182d11fb7c6264cf3df8457e888"
end
end

Expand Down
Loading