an experimental irc client
1image: alpine/edge
2packages:
3 - git
4secrets:
5 - d48e3c42-9d65-452f-9693-68653a855858 # ssh key for mirroring
6environment:
7 GIT_SSH_COMMAND: ssh -o StrictHostKeyChecking=no
8tasks:
9 - mirror: |
10 # Don't run on GitHub PRs
11 if [ "$BUILD_REASON" = 'github-pr' ]; then
12 exit
13 fi
14
15 git clone --mirror https://git.sr.ht/~rockorager/comlink comlink.git
16 git -C comlink.git push --force --mirror git@github.com:rockorager/comlink