chore(update): filter out more inputs
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-12-08 00:19:07 -05:00
parent a853cf4c23
commit 1e94cd9d0a

View file

@ -14,6 +14,7 @@ export const updateFlakeInputs = () => {
.toString() .toString()
// Add an extra blank line between inputs // Add an extra blank line between inputs
.split('\n•') .split('\n•')
// Filter out some inputs
.filter((input) => ![ .filter((input) => ![
'systems', 'systems',
'flake-utils', 'flake-utils',
@ -22,9 +23,11 @@ export const updateFlakeInputs = () => {
'lib-aggregate', 'lib-aggregate',
'lib-aggregate/nixpkgs-lib', 'lib-aggregate/nixpkgs-lib',
'sops-nix/nixpkgs-stable', 'sops-nix/nixpkgs-stable',
'discord-overlay/Vencord-src',
'nix-gaming/umu',
].some((inputName) => input.startsWith(` Updated input '${inputName}'`))) ].some((inputName) => input.startsWith(` Updated input '${inputName}'`)))
.join('\n\n•') .join('\n\n•')
// Shorten git revs to help readability // help readability of git revs
.split('\n') .split('\n')
.map((l) => l .map((l) => l
.replace( .replace(