refactor: dedupe the GIT_SEQUENCE_EDITOR lookup and drop port cruft#1660
Merged
Conversation
This was referenced Jun 19, 2026
Contributor
Merge Protections🟢 All 6 merge protections satisfied — ready to merge. Show 6 satisfied protections🟢 🤖 Continuous Integration
🟢 👀 Review Requirements
🟢 Enforce conventional commitMake sure that we follow https://www.conventionalcommits.org/en/v1.0.0/
🟢 🔎 Reviews
🟢 📕 PR description
🟢 🚦 Auto-queueWhen all merge protections are satisfied, this pull request will be queued automatically. |
This was referenced Jun 19, 2026
Contributor
Author
|
This pull request is part of a Mergify stack:
|
8e22fe5 to
e600168
Compare
8ead627 to
4e826a7
Compare
Contributor
Author
Revision history
|
e600168 to
68a295f
Compare
10d5ea0 to
c655221
Compare
a5927b8 to
e74d392
Compare
902b96f to
b47a14c
Compare
e74d392 to
b2ac905
Compare
b47a14c to
793f601
Compare
793f601 to
d051fab
Compare
Base automatically changed from
devs/JulianMaurin/feat/rust-cli-excellence/golden-snapshot-cli-surface-guard-schema-drift--25a9400f
to
main
June 23, 2026 09:45
`run_native` resolved the running binary's path with the same eight-line `std::env::current_exe().map_err(…)` block copy-pasted eight times across the rebase-family stack arms. Extract it into `mergify_self_exe()`, which also preserves the underlying I/O error as a `caused by:` source via `CliError::wrap`. Drop the leftover Python-port narration: the `stack new` "the rest still shim to Python" doc, and push.rs's "Python uses asyncio fan-out" comments. Restate push's design positively — async is incidental (reqwest's client is async-only); upserts run sequentially because Depends-On needs the predecessor's PR number and stacks are small. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Change-Id: I22a6f2928524ae6d1f5924063a8b7956000b8d3a
b2ac905 to
d41fe95
Compare
kozlek
approved these changes
Jun 23, 2026
remyduthu
approved these changes
Jun 23, 2026
Contributor
|
Queued — the merge queue status continues in this comment ↓. |
Contributor
Merge Queue Status
This pull request spent 42 seconds in the queue, including 8 seconds running CI. Required conditions to merge
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
run_nativeresolved the running binary's path with the sameeight-line
std::env::current_exe().map_err(…)block copy-pastedeight times across the rebase-family stack arms. Extract it into
mergify_self_exe(), which also preserves the underlying I/O error asa
caused by:source viaCliError::wrap.Drop the leftover Python-port narration: the
stack new"the reststill shim to Python" doc, and push.rs's "Python uses asyncio fan-out"
comments. Restate push's design positively — async is incidental
(reqwest's client is async-only); upserts run sequentially because
Depends-On needs the predecessor's PR number and stacks are small.
Co-Authored-By: Claude Opus 4.8 (1M context) noreply@anthropic.com