kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

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

ci: fix spindle secret syntax and branch ref

+14 -12
+14 -12
.tangled/workflows/mirror-to-github.yaml
··· 1 1 when: 2 - - event: ["push", "manual"] 3 - branch: ["main", "feat/*", "fix/*"] 2 + - event: ["push", "manual"] 3 + branch: ["main", "feat/*", "fix/*"] 4 4 5 5 engine: "nixery" 6 6 7 7 clone: 8 - depth: 0 8 + depth: 0 9 9 10 10 dependencies: 11 - nixpkgs: 12 - - git 11 + nixpkgs: 12 + - git 13 13 14 14 steps: 15 - - name: "Mirror to GitHub" 16 - command: | 17 - git fetch --unshallow origin || true 18 - git remote add github "https://x-access-token:${GITHUB_PAT}@github.com/daniel-daum/kaneo.git" 19 - git push github "HEAD:refs/heads/${TANGLED_REF_NAME}" --force 20 - environment: 21 - GITHUB_PAT: "${{ secrets.GITHUB_PAT }}" 15 + - name: "Mirror to GitHub" 16 + command: | 17 + git fetch --unshallow origin || true 18 + git fetch origin refs/heads/${TANGLED_REF_NAME}:refs/heads/${TANGLED_REF_NAME} 19 + git remote add github https://x-access-token:${GITHUB_PAT}@github.com/${GITHUB_USERNAME}/${GITHUB_REPO_NAME}.git 20 + git push github refs/heads/${TANGLED_REF_NAME}:refs/heads/${TANGLED_REF_NAME} --force 21 + environment: 22 + GITHUB_USERNAME: "daniel-daum" 23 + GITHUB_REPO_NAME: "kaneo"