Shared nix modules for my configurations.
0

Configure Feed

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

ci: unshallow fetch before mirroring to GitHub

+2 -1
+2 -1
.tangled/workflows/mirror-to-github.yml
··· 8 8 steps: 9 9 - name: "Mirror to GitHub" 10 10 command: | 11 - git fetch --prune --tags origin '+refs/heads/*:refs/heads/*' 11 + git fetch --unshallow --prune --tags origin '+refs/heads/*:refs/heads/*' || \ 12 + git fetch --prune --tags origin '+refs/heads/*:refs/heads/*' 12 13 git remote add github "https://x-access-token:${GITHUB_TOKEN}@github.com/i-ilak/nix-modules.git" 13 14 git push --force github 'refs/heads/*:refs/heads/*' 14 15 git push --force github 'refs/tags/*:refs/tags/*'