From fae13d9af8fc41ffce83db333852028379f1cf2c Mon Sep 17 00:00:00 2001
From: decentral1se <hi@decentral1.se>
Date: Thu, 17 Jun 2021 07:54:54 +0200
Subject: [PATCH] Define our own repos to skip here for mirroring

---
 bin/github-sync.py | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/bin/github-sync.py b/bin/github-sync.py
index e278b68..bbe1d55 100755
--- a/bin/github-sync.py
+++ b/bin/github-sync.py
@@ -6,13 +6,15 @@
 
 from os import chdir, environ, listdir
 
-from abralib import (
-    CLONES_PATH,
-    REPOS_TO_SKIP,
-    _run_cmd,
-    clone_all_apps,
-    get_repos_json,
-    log,
+from abralib import CLONES_PATH, _run_cmd, clone_all_apps, get_repos_json, log
+
+REPOS_TO_SKIP = (
+    "backup-bot",
+    "docker-dind-bats-kcov",
+    "docs.coopcloud.tech",
+    "pyabra",
+    "radicle-seed-node",
+    "swarm-cronjob",
 )