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: use git credential store for github mirror (avoid URL encoding issues)

+3 -1
+3 -1
.tangled/workflows/mirror-to-github.yaml
··· 16 16 command: | 17 17 git fetch --unshallow origin || true 18 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/daniel-daum/kaneo.git" 19 + git config --global credential.helper store 20 + printf 'https://x-access-token:%s@github.com\n' "${GITHUB_PAT}" > ~/.git-credentials 21 + git remote add github https://github.com/daniel-daum/kaneo.git 20 22 git push github refs/heads/${TANGLED_REF_NAME}:refs/heads/${TANGLED_REF_NAME} --force 21 23 environment: 22 24 GITHUB_PAT: "${{ secrets.GITHUB_PAT }}"