ci: make devin releasable (Create Tag dropdown + release.yml tag trigger) (MOT-3880) - #438
Merged
Merged
Conversation
The devin worker is merged but was missing from the create-tag.yml worker choice list, so it could not be selected to cut a release tag. release.yml is tag-driven (parses devin/vX.Y.Z and reads iii.worker.yaml), so this dropdown was the only place that still needed the name.
|
@rohitg00 is attempting to deploy a commit to the motia Team on Vercel. A member of the Team first needs to authorize it. |
📝 WalkthroughWalkthroughAdded ChangesWorkflow Input Update
Estimated code review effort: 1 (Trivial) | ~2 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
release.yml fires on an explicit per-worker tag list; devin/v* was missing, so a devin tag would create but never trigger the release. Pairs with the create-tag dropdown fix so devin is fully releasable.
This was referenced Jul 7, 2026
This was referenced Jul 18, 2026
This was referenced Jul 29, 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.
Linear: MOT-3880 (subtickets MOT-3883/3884/3885/3886)
The
devinworker is merged to main but two CI workflows still had hardcoded per-worker lists that omit it, so it can't be released:create-tag.yml— the workerchoicedropdown;devinwasn't selectable in the Create Tag workflow.release.yml— theon: push: tags:trigger lists each<name>/v*explicitly;devin/v*was missing, so adevintag would be created but never fire the release.This adds
devinto both (next tocodex, with the other agent-CLI workers). Swept the rest of.github/workflows+ scripts/docs; these two are the only per-worker lists. After merge: Actions -> Create Tag ->devincutsdevin/vX.Y.Z, andrelease.ymlbuilds + publishes from there.