luizotavio32 opened a new pull request, #42113: URL: https://github.com/apache/superset/pull/42113
### SUMMARY Backports #41629 to the `6.1` branch. The `pre-commit` workflow on `6.1` began failing because the brew-based `helm-docs` install stopped working — Homebrew now refuses the untrusted `norwoodj/tap`: ``` ==> Tapping norwoodj/tap ##[warning]Skipping norwoodj/tap because it is not trusted. Run `brew trust norwoodj/tap` to trust it. ##[error]Broken pipe ``` This broke all pre-commit jobs (`current`/`previous`/`next`) on `6.1` and every PR based on it, before any hook runs. `master` was unaffected because #41629 already replaced the brew step with a direct `go install` — that fix was never backported to `6.1`. This change mirrors #41629: it removes the `brew install norwoodj/tap/helm-docs` step and installs `helm-docs` via `go install` instead. ### BEFORE/AFTER **Before:** `Enable brew and helm-docs` step runs `brew install norwoodj/tap/helm-docs` → fails with "Broken pipe" / untrusted tap. **After:** `Setup Go` + `Install helm-docs` (`go install github.com/norwoodj/helm-docs/cmd/[email protected]`), no brew dependency. ### TESTING INSTRUCTIONS CI on this PR exercises the change: the `pre-commit` workflow should install `helm-docs` via Go and pass. ### ADDITIONAL INFORMATION - [ ] Has associated issue: - [ ] Required feature flags: - [ ] Changes UI - [ ] Includes DB Migration (follow approval process in [SIP-59](https://github.com/apache/superset/issues/13351)) - [ ] Migration is atomic, supports rollback & is backwards-compatible - [ ] Confirm DB migration upgrade and downgrade tested - [ ] Runtime estimates and downtime expectations provided - [ ] Introduces new feature or API - [ ] Removes existing feature or API Backport of #41629. 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
