~kris/dots

srice

ref: b42b72dc2648499470b89418ac629e40f41d3149 srice/.local/bin/srht-mirror -rwxr-xr-x 745 bytes
b42b72dc — Kris Yotam sb-battery: match macsmc-battery by type, add low-battery dunst alerts; xprofile: caps:super 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
# srht-mirror -- import a GitHub repo to sr.ht
set -eu

if [ -z "${1:-}" ]; then
    echo "Usage: srht-mirror <github-url-or-user/repo> [srht-name]" >&2
    exit 1
fi

GITHUB="$1"
case "$GITHUB" in
    https://*) URL="$GITHUB" ;;
    *) URL="https://github.com/$GITHUB" ;;
esac

NAME="${2:-$(basename "$URL" .git)}"
TOKEN=$(cat ~/.config/srht/token)

echo "[*] Importing $URL as $NAME..."
curl -s --oauth2-bearer "$TOKEN" -H 'Content-Type: application/json' \
  -d "{\"query\": \"mutation { createRepository(name: \\\"$NAME\\\", visibility: PUBLIC, cloneUrl: \\\"$URL\\\") { id name } }\"}" \
  https://git.sr.ht/query | jq -r '.data.createRepository | "    \(.name) (id: \(.id))"'

echo "[+] Done: https://git.sr.ht/~krisyotam/$NAME"