Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Conversation

@clouraLabs
Copy link
Owner

Summary

This PR fixes a duplicate workflow name issue in GitHub Actions where the run_unit_evals.yml workflow was incorrectly named run_agent_evals.

Problem

The .github/workflows/run_unit_evals.yml file had its workflow name set to run_agent_evals instead of run_unit_evals. This occurred because both workflow generation functions used named::workflow() which derives the name from the module name, causing both workflows to get the same name.

Solution

  • Modified tooling/xtask/src/tasks/workflows/run_agent_evals.rs to explicitly set the workflow name
  • Regenerated workflow files using cargo xtask workflows
  • The workflow file now correctly identifies itself as run_unit_evals

Changes

  • .github/workflows/run_unit_evals.yml: Updated workflow name from run_agent_evals to run_unit_evals
  • tooling/xtask/src/tasks/workflows/run_agent_evals.rs: Explicitly set workflow name

Testing

✅ All workflow names are now unique
✅ No compilation errors or warnings
✅ YAML structure validated

This fix has also been submitted upstream to zed-industries/zed as PR zed-industries#42047.

rtfeldman and others added 4 commits November 5, 2025 18:17
This makes it possible to do login via things like `cmd: "node", args:
["my-node-file.js", "login"]`

Also, that command will now use Zed's managed `node` instance.

Release Notes:

- ACP extensions can now run terminal login commands using relative
paths
…ndustries#38518)

On macOS, the Function key is reserved for system use and should not be
used in application code.

This commit updated keystroke matching and key event handling to ignore
the Function key modifier while users are typing or pressing
keybindings.

For some keyboards with compact layout (like my 65% keyboard), there is
no separated backtick key. Esc and it shares the same physical key. To
input backtick, users may press `Fn-Esc`. However, macOS will still
deliver events with Fn key modifier to applications. Cocoa framework can
handle this correctly, which typically ignore the Fn directly. GPUI
should also follow the same rule, otherwise, the backtick key on those
keyboards won't work.

Release Notes:

- Fixed a bug where typing fn-\` on macOS would not insert a `.
…tries#36848)

- On macOS, pasting now inserts the actual file path when the clipboard
contains a file URL (public.file-url/public.url)
- Terminal paste remains text-only; no temp files or data URLs are
created. If only raw image bytes exist on the clipboard, paste is a
no-op.
- Scope: macOS only; no dependency changes.
- Added a test (test_file_url_converts_to_path) that verifies URL→path
conversion using a unique pasteboard.

Release Notes:

- Improved pasting on macOS: now inserts the actual file path when the
clipboard contains a file URL (enables image paste support for Claude
Code)
The run_unit_evals.yml workflow was incorrectly named 'run_agent_evals'
due to both workflows being generated from the same module. This caused
duplicate workflow names in GitHub Actions.

Changes:
- Updated run_agent_evals.rs to explicitly set the workflow name for
  run_unit_evals to 'run_unit_evals'
- Regenerated workflows using 'cargo xtask workflows'
- The workflow file now correctly identifies itself as 'run_unit_evals'

This fixes potential CI/CD issues where GitHub Actions would be confused
by duplicate workflow names.
@cr-gpt
Copy link

cr-gpt bot commented Nov 6, 2025

Seems you are using me but didn't get OPENAI_API_KEY seted in Variables/Secrets for this repo. you could follow readme for more information

@clouraLabs clouraLabs merged commit c5e5529 into NeuroNexusIDE Nov 6, 2025
16 checks passed
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants