mirror of
https://github.com/hwchase17/langchain.git
synced 2026-07-29 11:18:57 +00:00
#39094 left the model profile refresh workflow invalid, so it failed immediately on push with no jobs (e.g. https://github.com/langchain-ai/langchain/actions/runs/30287294147). --- GitHub Actions expressions only allow single-quoted string literals. The new job condition used double quotes: ```yaml if: github.repository_owner == "langchain-ai" ``` That failed workflow validation before any job could start: > Unexpected symbol: `"langchain-ai"` Also switched the hyphenated input to bracket access so `providers-override` is not parsed as subtraction (`inputs.providers - override`).