{"id":20992755,"url":"https://github.com/pkgstore/bash-github-api","last_synced_at":"2026-04-16T11:02:57.420Z","repository":{"id":182146404,"uuid":"668006840","full_name":"pkgstore/bash-github-api","owner":"pkgstore","description":"Bash tools for GitHub API.","archived":false,"fork":false,"pushed_at":"2024-02-18T14:42:27.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-13T12:34:44.329Z","etag":null,"topics":["api","api-client","bash","bash-script","bash-scripts","github","github-api","linux"],"latest_commit_sha":null,"homepage":"https://ihub.to","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pkgstore.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-18T19:55:53.000Z","updated_at":"2023-07-24T22:07:17.000Z","dependencies_parsed_at":"2023-07-18T22:35:05.257Z","dependency_job_id":"57202420-69ce-47f5-a08a-e168ec3d9a0f","html_url":"https://github.com/pkgstore/bash-github-api","commit_stats":null,"previous_names":["pkgstore/bash-github-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pkgstore/bash-github-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pkgstore%2Fbash-github-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pkgstore%2Fbash-github-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pkgstore%2Fbash-github-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pkgstore%2Fbash-github-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pkgstore","download_url":"https://codeload.github.com/pkgstore/bash-github-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pkgstore%2Fbash-github-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31882886,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T09:23:21.276Z","status":"ssl_error","status_checked_at":"2026-04-16T09:23:15.028Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","api-client","bash","bash-script","bash-scripts","github","github-api","linux"],"created_at":"2024-11-19T07:12:25.724Z","updated_at":"2026-04-16T11:02:57.391Z","avatar_url":"https://github.com/pkgstore.png","language":"Shell","readme":"# Bash tools for GitHub API\n\nTools for automating work with [GitHub](https://github.com/).\n\n## Syntax\n\n### Creating repository\n\n- [repo.create.sh](repo.create.sh)\n  - `-x 'TOKEN'`  \n    GitHub user token.\n  - `-o 'OWNER'`  \n    Organization name. This is not case sensitive.\n  - `-r 'REPO_1;REPO_2;REPO_3'`  \n    Repository name (array).\n  - `-d 'DESCRIPTION'`  \n    Repository description.\n  - `-s 'https://example.org/'`  \n    Repository site URL.\n  - `-l 'mit'`  \n    Open source license template. For example, \"mit\" or \"mpl-2.0\".\n  - `-p`  \n    Whether repository is private.\n  - `-i`  \n    Enable issues for this repository.\n  - `-j`  \n    Enable projects for this repository.\n    NOTE: If you're creating a repository in an organization that has disabled repository projects, the API returns an error.\n  - `-w`  \n    Enable wiki for this repository.\n  - `-u`  \n    Create an initial commit with empty README.\n\n### Deleting repository\n\n- [repo.delete.sh](repo.delete.sh)\n  - `-x 'TOKEN'`  \n    GitHub user token.\n  - `-o 'OWNER'`  \n    Repository owner (organization).\n  - `-r 'REPO_1;REPO_2;REPO_3'`  \n    Repository name (array).\n\n### Updating topics\n\n- [repo.topics.sh](repo.topics.sh)\n  - `-x 'TOKEN'`  \n    GitHub user token.\n  - `-o 'OWNER'`  \n    Repository owner (organization).\n  - `-r 'REPO_1;REPO_2;REPO_3'`  \n    Repository name (array).\n  - `-t 'TOPIC_1;TOPIC_2;TOPIC_3'`  \n    Topic name (array).\n\n### Transferring repository\n\n- [repo.transfer.sh](repo.transfer.sh)\n  - `-x 'TOKEN'`  \n    GitHub user token.\n  - `-o 'OWNER_OLD'`  \n    OLD repository owner (organization).\n  - `-n 'OWNER_NEW'`  \n    NEW repository owner (organization).\n  - `-r 'REPO_1;REPO_2;REPO_3'`  \n    Repository name (array).\n\n### Updating repository\n\n- [repo.update.sh](repo.update.sh)\n  - `-x 'TOKEN'`  \n    GitHub user token.\n  - `-o 'OWNER'`  \n    Repository owner (organization).\n  - `-r 'REPO_1;REPO_2;REPO_3'`  \n    Repository name (array).\n  - `-d 'DESCRIPTION'`  \n    Repository description.\n  - `-s 'https://example.org/'`  \n    Repository site URL.\n  - `-p`  \n    Whether repository is private.\n  - `-i`  \n    Enable issues for this repository.\n  - `-j`  \n    Enable projects for this repository.\n  - `-w`  \n    Enable wiki for this repository.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpkgstore%2Fbash-github-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpkgstore%2Fbash-github-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpkgstore%2Fbash-github-api/lists"}