Skip to content

Conversation

@JacobPEvans
Copy link
Owner

@JacobPEvans JacobPEvans commented Feb 8, 2026

Summary

  • Fix flake input name from claude-code-plugins to jacobpevans-cc-plugins

Problem

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 update to produce no changes.

Test Plan

  • Merge this PR
  • Verify workflow triggers on push to main
  • Confirm nix workflow updates jacobpevans-cc-plugins input
  • Check automated PR created in nix repo with updated flake.lock

🤖 Generated with Claude Code


Important

Fixes flake input name in trigger-nix-update.yml to ensure correct repository is targeted for updates.

  • Behavior:
    • Fixes flake input name in trigger-nix-update.yml from claude-code-plugins to jacobpevans-cc-plugins to ensure correct repository is targeted.
  • Misc:
    • Adds a newline at the end of README.md.

This description was created by Ellipsis for b219ae9. You can customize this summary. It will automatically update as commits are pushed.

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>
Copilot AI review requested due to automatic review settings February 8, 2026 18:16
Copy link

@ellipsis-dev ellipsis-dev bot left a 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 22 lines of code in 2 files
  • Skipped 0 files when reviewing.
  • Skipped posting 0 draft 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 Ellipsis by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.

@gemini-code-assist
Copy link

Summary of Changes

Hello @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

  • Flake Input Name Correction: The pull request corrects the flake input name from "claude-code-plugins" to "jacobpevans-cc-plugins". This resolves an issue where the trigger workflow was targeting the wrong input, preventing nix flake update from registering changes for this repository.
Changelog
  • README.md
    • Added an empty line at the end of the file.
Ignored Files
  • Ignored by pattern: .github/workflows/** (1)
    • .github/workflows/trigger-nix-update.yml
Activity
  • No specific review comments or activity have been recorded for this pull request yet.
Using Gemini Code Assist

The 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 /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

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 .gemini/ folder in the base of the repository. Detailed instructions can be found here.

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

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a 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.

@JacobPEvans JacobPEvans merged commit 8c18e26 into main Feb 8, 2026
9 checks passed
@JacobPEvans JacobPEvans deleted the fix/correct-flake-input-name branch February 8, 2026 18:17
Copy link

Copilot AI left a 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.yml to dispatch flake_input_name=jacobpevans-cc-plugins (instead of claude-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.

Comment on lines 26 to 28
--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" \
Copy link

Copilot AI Feb 8, 2026

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.

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant