fix(ci): wrap if condition in expression syntax for YAML parsing#16
Merged
fix(ci): wrap if condition in expression syntax for YAML parsing#16
Conversation
The startsWith() function call on line 12 needs to be wrapped in
${{ }} expression syntax to avoid YAML parsing errors with the
parentheses and special characters.
chaliy
added a commit
that referenced
this pull request
Feb 8, 2026
## What Prepare patch release v0.2.1 — bumps version in Cargo.toml and updates CHANGELOG.md. ## Why New changes since v0.2.0 are ready for release: - New model profiles (Claude Opus 4.6, GPT-5.3 Codex) - CI fix for YAML parsing ## How - Bumped `Cargo.toml` version from `0.2.0` to `0.2.1` - Added `[0.2.1]` section to `CHANGELOG.md` with commits since v0.2.0 - Updated comparison links ## Changelog ### What's Changed - feat(models): add Claude Opus 4.6, GPT-5.3 Codex, and update model profiles ([#17](#17)) by @chaliy - fix(ci): wrap if condition in expression syntax for YAML parsing ([#16](#16)) by @chaliy ## Risk - Low — version bump and changelog only ## Checklist - [x] `cargo fmt --check` passes - [x] `cargo clippy -- -D warnings` passes - [x] `cargo test` passes (97 unit + 22 integration + 1 doc test) - [x] `cargo publish --dry-run` succeeds - [x] CHANGELOG.md updated https://claude.ai/code/session_01Q2qGPGF2L1NhQ1LxVQF5Pn Co-authored-by: Claude <noreply@anthropic.com>
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.
What
Fix YAML syntax error in release workflow on line 12.
Why
The release workflow was failing with "Invalid workflow file" due to the
ifcondition not being wrapped in${{ }}expression syntax.How
Wrapped the
startsWith()function call in${{ }}to ensure proper YAML parsing.Risk
Checklist