284: GitLab auto-merge fails: glab mr merge uses nonexistent --should-remove-source-branch flag #285
Loading…
Reference in a new issue
No description provided.
Delete branch "feature/issue-284/gitlab-auto-merge-fails-glab-mr-merge-uses-nonexis"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
284: GitLab auto-merge fails: glab mr merge uses nonexistent --should-remove-source-branch flag
Implements 284.
Generated in 7m 03s.
Review findings
Now let's re-run the gates to confirm everything's still green.Build passes. Now lint and test.All 2033 tests pass, build and lint pass, and format:check is now clean for the touched file. The Low finding is resolved.All gates re-verified green after the fix (build, lint, test, and format:check on the affected file).
Review Findings — 284
Summary
Fixed the single Low-severity finding: reformatted the
'appends captured stderr...'test insrc/mr/services/cliMergePollerBase.test.tswithnpx prettier --writeso it matches Prettier's default style and no longer diverges from the adjacent tests. Re-ran all gates after the fix:npm run build(pass),npm run lint(pass, clean),npm test(pass, 2033/2033), andnpx prettier --checkon the touched file (now clean). No other findings were raised in this review (all Critical/High/Medium sections were empty).Critical
(none)
High
(none)
Medium
(none)
Low
'appends captured stderr...'test'sawait expect(runner(...)).rejects.toThrow(...)call is not Prettier-formatted (npx prettier --checkflags this exact file; all other files touched by the diff are clean). Suggested fix: runnpm run format(ornpx prettier --write src/mr/services/cliMergePollerBase.test.ts) to collapse the call onto fewer lines per Prettier's default formatting, matching the style of the adjacentomits the stderr suffix...tests in the same file.