From 7b912c6a6d131cb6882e669ca7d6813cf7649b94 Mon Sep 17 00:00:00 2001 From: RyanPrussin <3878957+RyanPrussin@users.noreply.github.com> Date: Sat, 30 Aug 2025 20:51:35 -0400 Subject: [PATCH 1/3] Break nix file to show it does not trigger nix flake check --- nix/shell-plugins.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/shell-plugins.nix b/nix/shell-plugins.nix index 2269814b..465d2897 100644 --- a/nix/shell-plugins.nix +++ b/nix/shell-plugins.nix @@ -47,7 +47,7 @@ in map ( package: - if (elem (getExeName package) supported_plugins) then + if (elem (getExeNameasdasdas package) supported_plugins) then package else abort "${getExeName package} is not a valid 1Password Shell Plugin. A list of supported plugins can be found by running `op plugin list` or at: https://developer.1password.com/docs/cli/shell-plugins/" From aeccef8cad632cea94227a7c3c1fbfbb4ede644a Mon Sep 17 00:00:00 2001 From: RyanPrussin <3878957+RyanPrussin@users.noreply.github.com> Date: Sat, 30 Aug 2025 20:53:56 -0400 Subject: [PATCH 2/3] Core fix: now check will run against current branch most recent commit and will be triggered by nix file outside of project root --- .github/workflows/check-flake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-flake.yml b/.github/workflows/check-flake.yml index aeedc194..11bfd385 100644 --- a/.github/workflows/check-flake.yml +++ b/.github/workflows/check-flake.yml @@ -1,8 +1,8 @@ name: Check Nix flake on: - pull_request_target: + pull_request: paths: - - '*.nix' + - '**.nix' - flake.lock push: branches: From 7039d5f69f7a1c4eaaa02e6f77d0b7a458de83c1 Mon Sep 17 00:00:00 2001 From: RyanPrussin <3878957+RyanPrussin@users.noreply.github.com> Date: Sat, 30 Aug 2025 20:57:39 -0400 Subject: [PATCH 3/3] Restore broken line --- nix/shell-plugins.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/shell-plugins.nix b/nix/shell-plugins.nix index 465d2897..2269814b 100644 --- a/nix/shell-plugins.nix +++ b/nix/shell-plugins.nix @@ -47,7 +47,7 @@ in map ( package: - if (elem (getExeNameasdasdas package) supported_plugins) then + if (elem (getExeName package) supported_plugins) then package else abort "${getExeName package} is not a valid 1Password Shell Plugin. A list of supported plugins can be found by running `op plugin list` or at: https://developer.1password.com/docs/cli/shell-plugins/"