Mislav Marohnić
Mislav Marohnić
TokenForHost `source` return value should be a value like GH_TOKEN or GITHUB_TOKEN when the token comes from an environment variable, or a file path (e.g. `/path/to/hosts.yml`) when the value comes...
The documentation in help topics such as `gh help environment` and `gh help formatting` is currently not available as man pages. When we do generate man pages for them, we...
Issue https://github.com/home-assistant/addons/issues/3801 describes a regression where a syntax error was introduced into a bash script that led to an addon startup issue. Because this repository has a linting step, I've...
Fixes https://github.com/actions/toolkit/issues/1960 Ref. https://github.com/advisories/GHSA-h5c3-5r3r-rr8q Note that `npm audit` will still show the updated version as vulnerable, even though it is patched: https://github.com/npm/cli/issues/8125. Hopefully Dependabot figures it out.
Hi, reporting something that is not necessarily a bug with this codebase, but a packaging problem. I'm not familiar with this project enough to determine that, so I'm leaving it...
I've taken a stab at publishing Homebrew bottles for formula in this repo: `rbenv/tap/[email protected]` and `rbenv/tap/[email protected]` On macOS Sequoia 15 arm64, running `brew install` for any of these formulae should...
By default, this action only checks extension-less executable scripts _if_ they have a known shebang such as `#!/usr/bin/env bash`. The new option `all_scripts: true` relaxes the shebang regex pattern so...
Prior to this, specific violations that shellcheck reports are logged in its output, but are not picked up by GitHub in any special way. The new "actions" format will output...
When reviewing this action, I was surprised that it downloads shellcheck on every run even though shellcheck comes pre-installed with GitHub Actions runner images. With special `version: system` action input...
macOS has BSD version of the find utility, which doesn't support the `-perm /111` expression, but it does support `-perm +111` (which the GNU version has since deprecated). This allows...