Dendritic Nix - Community-driven Nix distribution based on the Dendritic pattern.
5
fork

Configure Feed

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

remove files before discovering

+16 -6
+8 -3
.github/workflows/update-sources.yaml
··· 27 27 "uses": "DeterminateSystems/magic-nix-cache-action@main" 28 28 }, 29 29 { 30 + "run": "rm -rf ./dev/community/discovered/" 31 + }, 32 + { 30 33 "run": "nix develop --accept-flake-config --override-input dendrix . --print-build-logs ./dev -c pins update" 31 34 }, 32 35 { ··· 55 58 "name": "update sources", 56 59 "on": { 57 60 "repository_dispatch": {}, 58 - "schedule": { 59 - "cron": "0 0 * * *" 60 - }, 61 + "schedule": [ 62 + { 63 + "cron": "0 5 * * *" 64 + } 65 + ], 61 66 "workflow_call": {}, 62 67 "workflow_dispatch": {} 63 68 },
+8 -3
dev/modules/gh-update-sources.nix
··· 15 15 workflow_call = { }; 16 16 workflow_dispatch = { }; 17 17 repository_dispatch = { }; 18 - schedule = [{ 19 - cron = "0 5 * * *"; 20 - }]; 18 + schedule = [ 19 + { 20 + cron = "0 5 * * *"; 21 + } 22 + ]; 21 23 }; 22 24 permissions = { 23 25 contents = "write"; ··· 33 35 environment.url = "\${{steps.update.outputs.pull-request-url}}"; 34 36 runs-on = "ubuntu-latest"; 35 37 steps = (import ./_gh-provision-nix.nix) ++ [ 38 + { 39 + run = "rm -rf ./dev/community/discovered/"; 40 + } 36 41 { 37 42 run = "nix develop --accept-flake-config --override-input dendrix . --print-build-logs ./dev -c pins update"; 38 43 }