Lints and suggestions for the Nix programming language
1
fork

Configure Feed

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

ci: dependabot commit message

+8
+4
.github/dependabot.yml
··· 1 1 { 2 2 "updates": [ 3 3 { 4 + "commit-message": { 5 + "include": "scope", 6 + "prefix": "chore" 7 + }, 4 8 "directory": "/", 5 9 "groups": { 6 10 "everything": {
+4
flake-parts/dependabot.nix
··· 17 17 directory = "/"; 18 18 schedule.interval = "daily"; 19 19 groups.everything.patterns = [ "*" ]; 20 + commit-message = { 21 + prefix = "chore"; 22 + include = "scope"; 23 + }; 20 24 } 21 25 ]; 22 26 };