fix(cli): scope PR update to current generator and fix CI concurrency#12331
Merged
davidkonigsberg merged 1 commit intomainfrom Feb 13, 2026
Merged
Conversation
Co-Authored-By: David Konigsberg <davidakonigsberg@gmail.com>
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
tstanmay13
approved these changes
Feb 13, 2026
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.
Description
Refs: Devin session
Requested by: @davidkonigsberg
Fixes the
test-remote-vs-local-generation-parityworkflow that has been failing since Feb 9 (when PR #11502 / v3.70.0 introduced the PR update feature for self-hosted GitHub generation).Root cause: When multiple generators (ts-sdk, java-sdk, go-sdk, python-sdk) run concurrently in CI, they all target
fern-api/emptyandfindExistingUpdatablePRfinds the same most-recently-updated PR for all of them. They all try to push to the same branch, causing non-fast-forward rejections on all but the first push. Retries don't help because each retry hits the same race.Changes Made
fern-bot/{date}tofern-bot/{generator-name}/{date}(e.g.fern-bot/fernapi-fern-typescript-sdk/2026-02-13_...).findExistingUpdatablePRnow filters by this generator-specific prefix, so generators only find and update their own PRs.cancel-in-progress: true→false. With GitHub Actions, this lets the current run finish while cancelling any intermediate pending runs, so only the newest queued run executes next (instead of constantly cancelling in-progress jobs).Review Checklist
fern-bot/{date}branches won't be matched by the new prefix filter. First generation after this change will create a new PR instead of updating existing ones — acceptable one-time transition?generatorNameis optional: Falls back to"fern-bot/"(old behavior) when undefined. In practice,generatorInvocation.nameis always defined at the call site — verify this is safe./with-. Are there other characters in generator names that could be invalid in git branch names?Testing
pnpm run check)fern-api/emptyrepo — will validate post-merge)