A very simple terminal spinner
0

Configure Feed

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

Use my mirror action

Tom Fleet (Jun 19, 2026, 7:18 PM +0100) aa5f81a2 a8060758

+28
+28
.github/workflows/tangled-mirror.yml
··· 1 + name: Tangled Mirror 2 + 3 + on: 4 + delete: # Also prune tangled 5 + push: 6 + branches: 7 + - main 8 + tags: 9 + - "*" 10 + 11 + concurrency: 12 + group: tangled-mirror 13 + cancel-in-progress: false 14 + 15 + permissions: {} 16 + 17 + jobs: 18 + mirror: 19 + name: Mirror to tangled 20 + runs-on: ubuntu-latest 21 + permissions: 22 + contents: read 23 + 24 + steps: 25 + - uses: FollowTheProcess/tangled-mirror@v1 26 + with: 27 + tangled-ssh-key: ${{ secrets.TANGLED_SSH_KEY }} 28 + tangled-handle: followtheprocess.codes