🔧 update github scripts
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 6m44s

This commit is contained in:
Ingolf Wagner 2025-06-11 15:17:49 +02:00
parent 996beb2558
commit e650a409f7
2 changed files with 3 additions and 3 deletions

View file

@ -61,8 +61,8 @@ resource "local_file" "repositories_script" {
content = <<-EOF
cd ~/dev
%{for repo in sort(data.github_repositories.org_repos.full_names) ~}
git clone ${repo}
%{for repo in sort(data.github_repositories.org_repos.full_names)~}
git clone git@github.com:${repo}.git
%{endfor}
EOF
}

View file

@ -1,6 +1,6 @@
inputs = {
github_token = get_env("GITHUB_TOKEN", "")
github_organization = "JobRad-SRE"
github_organization = "jobrad-gmbh"
output_json_path = "./repositories.json"
}