diff --git a/.github/workflows/update-flake-lock.yaml b/.github/workflows/update-flake-lock.yaml index ca7b333..50d21a4 100644 --- a/.github/workflows/update-flake-lock.yaml +++ b/.github/workflows/update-flake-lock.yaml @@ -19,7 +19,11 @@ } }, { - "uses": "DeterminateSystems/update-flake-lock@main" + "uses": "DeterminateSystems/update-flake-lock@main", + "with": { + "commit-msg": "chore(flake): bump inputs", + "pr-title": "chore(flake): bump inputs" + } } ] } diff --git a/flake-parts/ci.nix b/flake-parts/ci.nix index da58eb9..d4d24bd 100644 --- a/flake-parts/ci.nix +++ b/flake-parts/ci.nix @@ -112,7 +112,13 @@ in steps = [ steps.checkout steps.cachixInstallNix - { uses = "DeterminateSystems/update-flake-lock@main"; } + { + uses = "DeterminateSystems/update-flake-lock@main"; + "with" = { + commit-msg = "chore(flake): bump inputs"; + pr-title = "chore(flake): bump inputs"; + }; + } ]; }; };