anulum/Hushline Output Muting
Run a command and mute, redact, and bound its stdout/stderr (secrets, ANSI, noise) before it reaches the CI log.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Activelast commit Jun 20, 2026
- License
- AGPL 3.0
Pinned Snippet
uses: anulum/hushline@879f5d828543ba841dbff84a1821f7ed3b8a50a9 # v0.1.7tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| command | The command to run with its output muted (executed with bash -c). | yes | — |
| max-lines | Maximum output lines before truncation (0 keeps the profile default). | no | 0 |
| max-width | Maximum line width in bytes (0 disables width truncation). | no | 0 |
| timeout | Timeout in seconds for the command (0 disables the timeout). | no | 0 |
| raw | If true, bypass redaction and shaping (output passes through unchanged). | no | false |
| pipe-errors | If true, shape stderr through the muter; if false, discard stderr. | no | true |
| working-directory | Directory in which to run the command. | no | . |
Outputs
| name | description |
|---|---|
| output | The shaped (muted) stdout of the command. |