mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 20:15:31 -04:00
1fd7cf4aca
workflow_dispatch boolean inputs in GitHub Actions do not apply default
values when triggered via gh CLI without explicit --field flags.
They arrive as empty string ('') which does not equal true, causing all
if: inputs.suite_XXX == true conditions to evaluate as false.
Fix: change all suite if conditions from == true to != 'false' so that
both explicit true and the default empty string are treated as enabled.