{"id":20252027,"url":"https://github.com/petermekhaeil/git-tag-release","last_synced_at":"2026-05-15T13:01:49.031Z","repository":{"id":103217062,"uuid":"586236586","full_name":"petermekhaeil/git-tag-release","owner":"petermekhaeil","description":"How to create a GitHub release on tag push","archived":false,"fork":false,"pushed_at":"2023-01-07T13:39:49.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-14T05:22:56.671Z","etag":null,"topics":["github","release","tag"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/petermekhaeil.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-01-07T12:33:10.000Z","updated_at":"2023-03-07T02:36:36.000Z","dependencies_parsed_at":"2023-06-29T01:00:42.099Z","dependency_job_id":null,"html_url":"https://github.com/petermekhaeil/git-tag-release","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/petermekhaeil/git-tag-release","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petermekhaeil%2Fgit-tag-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petermekhaeil%2Fgit-tag-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petermekhaeil%2Fgit-tag-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petermekhaeil%2Fgit-tag-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/petermekhaeil","download_url":"https://codeload.github.com/petermekhaeil/git-tag-release/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petermekhaeil%2Fgit-tag-release/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33067476,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["github","release","tag"],"created_at":"2024-11-14T10:14:26.143Z","updated_at":"2026-05-15T13:01:48.990Z","avatar_url":"https://github.com/petermekhaeil.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# git-tag-release\n\nThe different ways of creating a GitHub release.\n\n[GitHub Documentation](https://docs.github.com/en/rest/releases/releases#create-a-release)\n\n## Using cURL\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Accept: application/vnd.github+json\" \\\n  -H \"Authorization: Bearer \u003cYOUR-TOKEN\u003e\"\\\n  -H \"X-GitHub-Api-Version: 2022-11-28\" \\\n  https://api.github.com/repos/OWNER/REPO/releases \\\n  -d '{\"tag_name\":\"v0.0.0\",\"name\":\"v0.0.0\",\"body\":\"Full Changelog: https://github.com/OWNER/REPO/commits/v0.0.0\"}'\n```\n\n## Using JavaScript\n\n```js\nconst octokit = new Octokit({\n  auth: 'YOUR-TOKEN'\n});\n\nawait octokit.request('POST /repos/{owner}/{repo}/releases', {\n  owner: 'OWNER',\n  repo: 'REPO',\n  tag_name: 'v0.0.0',\n  name: 'v0.0.0',\n  body: 'Full Changelog: https://github.com/OWNER/REPO/commits/v0.0.0'\n});\n```\n\n## Using GitHub CLI\n\n```bash\ngh api \\\n  --method POST \\\n  -H \"Accept: application/vnd.github+json\" \\\n  /repos/OWNER/REPO/releases \\\n  -f tag_name='v0.0.0' \\\n  -f name='v0.0.0' \\\n  -f body='Full Changelog: https://github.com/OWNER/REPO/commits/v0.0.0'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetermekhaeil%2Fgit-tag-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpetermekhaeil%2Fgit-tag-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetermekhaeil%2Fgit-tag-release/lists"}