chore(update): filter out more inputs
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
a853cf4c23
commit
1e94cd9d0a
1 changed files with 4 additions and 1 deletions
|
@ -14,6 +14,7 @@ export const updateFlakeInputs = () => {
|
|||
.toString()
|
||||
// Add an extra blank line between inputs
|
||||
.split('\n•')
|
||||
// Filter out some inputs
|
||||
.filter((input) => ![
|
||||
'systems',
|
||||
'flake-utils',
|
||||
|
@ -22,9 +23,11 @@ export const updateFlakeInputs = () => {
|
|||
'lib-aggregate',
|
||||
'lib-aggregate/nixpkgs-lib',
|
||||
'sops-nix/nixpkgs-stable',
|
||||
'discord-overlay/Vencord-src',
|
||||
'nix-gaming/umu',
|
||||
].some((inputName) => input.startsWith(` Updated input '${inputName}'`)))
|
||||
.join('\n\n•')
|
||||
// Shorten git revs to help readability
|
||||
// help readability of git revs
|
||||
.split('\n')
|
||||
.map((l) => l
|
||||
.replace(
|
||||
|
|
Loading…
Reference in a new issue