Lints and suggestions for the Nix programming language
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #129 from oppiliappan/update-flake-lock-action-commit-msg

ci: update flake lock action commit message

authored by

Shahar "Dawn" Or and committed by
GitHub
b1d85b55 61e46e6a

+12 -2
+5 -1
.github/workflows/update-flake-lock.yaml
··· 19 19 } 20 20 }, 21 21 { 22 - "uses": "DeterminateSystems/update-flake-lock@main" 22 + "uses": "DeterminateSystems/update-flake-lock@main", 23 + "with": { 24 + "commit-msg": "chore(flake): bump inputs", 25 + "pr-title": "chore(flake): bump inputs" 26 + } 23 27 } 24 28 ] 25 29 }
+7 -1
flake-parts/ci.nix
··· 112 112 steps = [ 113 113 steps.checkout 114 114 steps.cachixInstallNix 115 - { uses = "DeterminateSystems/update-flake-lock@main"; } 115 + { 116 + uses = "DeterminateSystems/update-flake-lock@main"; 117 + "with" = { 118 + commit-msg = "chore(flake): bump inputs"; 119 + pr-title = "chore(flake): bump inputs"; 120 + }; 121 + } 116 122 ]; 117 123 }; 118 124 };