What's Changed
New: PR Review Mode (mode: pr-review)
The action now supports a pr-review mode that runs Pullminder's CI risk scoring
against pull requests. Enable it with:
- uses: pullminder/action@v1
with:
mode: pr-reviewNew inputs for this mode:
fail-on— minimum severity that fails the build (critical,high,medium,low)fail-on-count— maximum findings before failingconfig— path to config fileapi-token— API token for the Pullminder platform (reserved for future use)
The existing registry mode remains the default for backward compatibility.
Fixes
- Fixed curl SIGPIPE (exit 23) when resolving the latest CLI tag under pipefail.
- CLI cache now busts when
latestresolves to a new version by storing the concrete
tag in the cache key instead of the literal stringlatest.
Changelog
- feat(action): add mode: pr-review support
- test(action): add pr-review mode test suite
- fix(ci): give pr-review selftest a base branch to diff against
- docs: sync from pullminder.com monorepo