fix(ci): remove homebrew_casks section#22
Merged
itsjeremyjohnson merged 1 commit intomainfrom Apr 9, 2026
Merged
Conversation
Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Remove homebrew_casks that references HOMEBREW_TAP_GITHUB_TOKEN (tap not set up). Was causing release failures.
Greptile Summary
This PR removes the
homebrew_caskssection from.goreleaser.yamlthat referenced theHOMEBREW_TAP_GITHUB_TOKENsecret for a Homebrew tap that has not been configured, which was causing release pipeline failures. The remaining config is clean and correctly covers multi-platform builds, archives, and checksums.Confidence Score: 5/5
Safe to merge — removes a misconfigured section that was actively breaking releases with no functional regression.
The change is a targeted one-section removal that resolves a confirmed CI failure. The remaining config is structurally sound, no P0/P1 findings exist, and there are no logic or security concerns.
No files require special attention.
Vulnerabilities
No security concerns identified. The fix removes a reference to an unconfigured secret (
HOMEBREW_TAP_GITHUB_TOKEN), which reduces unnecessary credential surface area in the release pipeline.Important Files Changed
homebrew_caskssection that referencedHOMEBREW_TAP_GITHUB_TOKEN; remaining config covers Linux/Windows/Darwin builds, archives, and checksums cleanly.Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[git tag pushed] --> B[GoReleaser triggered] B --> C[Build: clickup\nlinux_amd64 / arm64\nwindows_amd64 / arm64\nCGO_ENABLED=0] B --> D[Build: clickup_darwin\ndarwin_amd64 / arm64\nCGO_ENABLED=1] C --> E[Archive: tar.gz / zip] D --> E E --> F[Checksum: checksums.txt] F --> G[GitHub Release] G --> H[✅ Done]Reviews (1): Last reviewed commit: "fix(ci): remove homebrew_casks section (..." | Re-trigger Greptile