-
Notifications
You must be signed in to change notification settings - Fork 0
fix: use correct flake input name jacobpevans-cc-plugins #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The nix flake.nix uses 'jacobpevans-cc-plugins' for the JacobPEvans claude-code-plugins repo, not 'claude-code-plugins' which maps to anthropics/claude-code. This was causing nix flake update to produce no changes since the wrong input was being targeted. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Important
Looks good to me! 👍
Reviewed everything up to b219ae9 in 5 seconds. Click for details.
- Reviewed
22lines of code in2files - Skipped
0files when reviewing. - Skipped posting
0draft comments. View those below. - Modify your settings and rules to customize what types of comments Ellipsis leaves. And don't forget to react with 👍 or 👎 to teach Ellipsis.
Workflow ID: wflow_KTu0DtA2MGJNUqAA
You can customize by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.
Summary of ChangesHello @JacobPEvans, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses a critical configuration error within the Nix flake setup that was hindering automated updates. By rectifying an incorrect input name, it ensures that the repository's flake configuration can be properly updated and maintained, thereby restoring the intended functionality of the update workflow. Highlights
Changelog
Ignored Files
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request is intended to fix a flake input name in a workflow file. The provided patch only contains a change to README.md, which adds a newline at the end of the file. This is a standard formatting practice and I have no issues with this change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR corrects the flake input name sent by this repo’s dispatch workflow so the downstream Nix repository updates the intended flake input for JacobPEvans/claude-code-plugins.
Changes:
- Update
.github/workflows/trigger-nix-update.ymlto dispatchflake_input_name=jacobpevans-cc-plugins(instead ofclaude-code-plugins). - Add a trailing blank line to the root
README.md.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| README.md | Adds a trailing blank line at EOF. |
| .github/workflows/trigger-nix-update.yml | Fixes the dispatched flake_input_name so the Nix flake update targets this repo’s input. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| --field event_type='upstream-repo-updated' \ | ||
| --field client_payload[flake_input_name]='claude-code-plugins' \ | ||
| --field client_payload[flake_input_name]='jacobpevans-cc-plugins' \ | ||
| --field client_payload[source_repo]="$SOURCE_REPO" \ |
Copilot
AI
Feb 8, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
README.md's “Nix Flake Auto-Update” section still states the nix repo updates the claude-code-plugins flake input, but this workflow now dispatches jacobpevans-cc-plugins. Please update that documentation to match the corrected input name so operators troubleshooting the automation aren’t misled.
Summary
claude-code-pluginstojacobpevans-cc-pluginsProblem
The nix flake.nix has two separate inputs:
claude-code-plugins=github:anthropics/claude-code(Anthropic's official repo)jacobpevans-cc-plugins=github:JacobPEvans/claude-code-plugins(this repo)The trigger workflow was targeting the wrong input, causing
nix flake updateto produce no changes.Test Plan
jacobpevans-cc-pluginsinput🤖 Generated with Claude Code
Important
Fixes flake input name in
trigger-nix-update.ymlto ensure correct repository is targeted for updates.trigger-nix-update.ymlfromclaude-code-pluginstojacobpevans-cc-pluginsto ensure correct repository is targeted.README.md.This description was created by
for b219ae9. You can customize this summary. It will automatically update as commits are pushed.