Problem
supercli PRs #2 and #6 show mergeStateStatus: UNSTABLE — GitHub reports CI checks as failing or incomplete. This blocks auto-merge even though the code changes are valid plugin additions (new files only, no modifications to existing code).
Affected PRs
Investigation needed
- What CI checks are configured for supercli?
- Are the failures real (test failures) or infrastructure (missing secrets, workflow misconfig)?
- If real: what tests are failing and why?
- If infra: fix the CI config
Impact
- New plugin PRs accumulate without merging (4 stacked PRs at one point)
- auto_merge=true is ineffective — PRs pile up forever
- Each new PR has to rebase across the growing backlog
Suggested fix
- Check
.github/workflows/ for CI configuration
- Run tests locally to see if they pass:
npm test or equivalent
- If tests pass locally but fail in CI, it's an infra issue
- If tests fail locally, fix the failing tests
Problem
supercli PRs #2 and #6 show
mergeStateStatus: UNSTABLE— GitHub reports CI checks as failing or incomplete. This blocks auto-merge even though the code changes are valid plugin additions (new files only, no modifications to existing code).Affected PRs
Investigation needed
Impact
Suggested fix
.github/workflows/for CI configurationnpm testor equivalent