[fix]: declare is_test input in release workflow dispatch#1431
Merged
Conversation
The SDK Release Jira automation dispatches this workflow with an is_test input in addition to release_ticket_key. The workflow declared only release_ticket_key, so GitHub rejected the dispatch (422 Unexpected inputs provided: is_test), the workflow never ran, and the v3.18.0 release ticket SDKRLSD-2136 auto-rolled back to Conditional Release Approved. Declare is_test so the dispatch is accepted. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
✅ Deploy Preview for sendbird-uikit-react ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
danney-chun
approved these changes
May 27, 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.
Summary
The SDK Release Jira automation dispatches
release-workflow.ymlwith anis_testinput in addition torelease_ticket_key. The workflow declared onlyrelease_ticket_key, so GitHub rejected the dispatch with422 Unexpected inputs provided: ["is_test"]— the workflow never started and the v3.18.0 release ticket (SDKRLSD-2136) auto-rolled back to Conditional Release Approved.This declares
is_test(boolean, defaultfalse) so the dispatch is accepted. It must land onmain, sinceworkflow_dispatchinputs are validated against the workflow definition on the default branch.Context
422 Unexpected inputs provided: ["is_test"]Follow-up
The production workflow diverged from the canonical SDK release template (the test repo also declared
skip_npm/npm_dry_run). A broader alignment review with the release-platform team may be worthwhile; this PR is the minimal change to unblock the v3.18.0 release.🤖 Generated with Claude Code