Hey I'm wondering if it's possible to gate PR creation behind a conditional. I'm working on a workflow in my NixOS config where it updates the flake.lock, then run nix flake check; which then executes everything that's located in my flake's checks output (which includes a hostName = nixosConfigurations.hostName.config.system.build.topLevel, to not only make sure the flake itself is valid but also see if it can actually build before creating the PR containing the changes from the flake update action
Hey I'm wondering if it's possible to gate PR creation behind a conditional. I'm working on a workflow in my NixOS config where it updates the flake.lock, then run
nix flake check; which then executes everything that's located in my flake's checks output (which includes ahostName = nixosConfigurations.hostName.config.system.build.topLevel, to not only make sure the flake itself is valid but also see if it can actually build before creating the PR containing the changes from the flake update action