hound: drop allowed_forks, use disallowed_repos
I thought allowed_forks would be easier but two lists is more complicated than we really need.
This commit is contained in:
parent
68ce9bac95
commit
daa0cd24c3
1 changed files with 6 additions and 12 deletions
|
@ -9,20 +9,15 @@ import requests
|
||||||
github_token = os.environ.get("GITHUB_TOKEN")
|
github_token = os.environ.get("GITHUB_TOKEN")
|
||||||
|
|
||||||
disallowed_repos = [
|
disallowed_repos = [
|
||||||
|
"nix-community/dream2nix-auto-test",
|
||||||
|
"nix-community/image-spec",
|
||||||
|
"nix-community/nix",
|
||||||
|
"nix-community/nixpkgs",
|
||||||
|
"nix-community/nsncd",
|
||||||
|
"nix-community/rkwifibt",
|
||||||
"NixOS/nixops-dashboard", # empty repo causes an error
|
"NixOS/nixops-dashboard", # empty repo causes an error
|
||||||
]
|
]
|
||||||
|
|
||||||
allowed_forks = [
|
|
||||||
"nix-community/acpi_call",
|
|
||||||
"nix-community/bundix",
|
|
||||||
"nix-community/luarocks-nix",
|
|
||||||
"nix-community/nix-doom-emacs",
|
|
||||||
"nix-community/nix-straight.el",
|
|
||||||
"nix-community/travis-build",
|
|
||||||
"nix-community/vagrant-nixos-plugin",
|
|
||||||
"NixOS/calamares-nixos-extensions",
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
def all_for_org(org):
|
def all_for_org(org):
|
||||||
|
|
||||||
|
@ -52,7 +47,6 @@ def all_for_org(org):
|
||||||
for repo in repos
|
for repo in repos
|
||||||
if repo["full_name"] not in disallowed_repos
|
if repo["full_name"] not in disallowed_repos
|
||||||
if repo["archived"] is False
|
if repo["archived"] is False
|
||||||
if repo["fork"] is False or repo["full_name"] in allowed_forks
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue