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()
|
.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(
|
||||||
|
|
Loading…
Reference in a new issue