{"id":47817038,"url":"https://github.com/leoweyr/github-release-workflow","last_synced_at":"2026-04-03T18:45:33.462Z","repository":{"id":345667686,"uuid":"1186853871","full_name":"leoweyr/github-release-workflow","owner":"leoweyr","description":"Streamline your software delivery with a production-ready engineering workflow. Automated semantic versioning, changelog generation (via git-cliff), and GitHub release publishing.","archived":false,"fork":false,"pushed_at":"2026-03-29T06:32:38.000Z","size":31,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2026-03-29T08:30:38.819Z","etag":null,"topics":["automated-release","changelog-generator","ci-cd","conventional-commits","devops","engineering-workflow","git-cliff","github-actions","pipeline","production-ready","release-automation","reusable-workflows","sematic-release","software-delivery"],"latest_commit_sha":null,"homepage":"","language":null,"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/leoweyr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-20T03:58:17.000Z","updated_at":"2026-03-29T06:32:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/leoweyr/github-release-workflow","commit_stats":null,"previous_names":["leoweyr/github-release-workflow"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/leoweyr/github-release-workflow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoweyr%2Fgithub-release-workflow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoweyr%2Fgithub-release-workflow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoweyr%2Fgithub-release-workflow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoweyr%2Fgithub-release-workflow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leoweyr","download_url":"https://codeload.github.com/leoweyr/github-release-workflow/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoweyr%2Fgithub-release-workflow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31370203,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T17:53:18.093Z","status":"ssl_error","status_checked_at":"2026-04-03T17:53:17.617Z","response_time":107,"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":["automated-release","changelog-generator","ci-cd","conventional-commits","devops","engineering-workflow","git-cliff","github-actions","pipeline","production-ready","release-automation","reusable-workflows","sematic-release","software-delivery"],"created_at":"2026-04-03T18:45:31.502Z","updated_at":"2026-04-03T18:45:33.439Z","avatar_url":"https://github.com/leoweyr.png","language":null,"readme":"![github-release-workflow](https://socialify.git.ci/leoweyr/github-release-workflow/image?description=1\u0026font=KoHo\u0026forks=1\u0026issues=1\u0026logo=https%3A%2F%2Fraw.githubusercontent.com%2Fleoweyr%2Fgithub-release-workflow%2Frefs%2Fheads%2Fdevelop%2Fassets%2Ficon.svg\u0026name=1\u0026owner=1\u0026pattern=Formal+Invitation\u0026pulls=1\u0026stargazers=1\u0026theme=Light)\n\n![Usage](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fabacus.jasoncameron.dev%2Fget%2Fleoweyr%2Fgithub-release-workflow-usage\u0026query=%24.value\u0026label=Usage\u0026color=blue\u0026suffix=%20times)\n![Used by Stats](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/leoweyr/0575adecfc13c95f281dfccfe5b76063/raw/github-release-workflow-used-by-stats.json)\n\n\u003e [!IMPORTANT]\n\u003e To ensure changelogs are generated correctly, all git commit messages must follow the **[Conventional Commits](https://www.conventionalcommits.org/)** specification.\n\u003e\n\u003e Also, you must go to your repository **Settings \u003e Actions \u003e General \u003e Workflow permissions** and enable **\"Allow GitHub Actions to create and approve pull requests\"**, otherwise the automated release process will fail.\n\n## 🚀 Instant Magic for Your Repository!!!\n\nAdd professional release automation to your personal project with a single step:\n\n**Copy the `prepare-release.yml` and `publish-release.yml` files from `.github/workflows` into your project's `.github/workflows` directory.**\n\n✨ That's it! Your repository is now enchanted.\n\n## ⚙ How It Works\n\nThis workflow streamlines your release process into a few simple steps:\n\n1.  **Tag Your Release**: On your development branch (separate from `master` or `main`), create a git tag with a `v` prefix (e.g., `v1.0.0`).\n    ```bash\n    git tag v1.0.0\n    ```\n\n2.  **Push the Tag**: Push the tag to GitHub.\n    ```bash\n    git push origin v1.0.0\n    ```\n\n3.  **Automated Magic**: GitHub Actions will automatically:\n    *   Generate a changelog based on your conventional commits.\n    *   Create a specific release branch.\n    *   Open a Pull Request to your default branch (e.g., `master`).\n\n4.  **Review and Merge**: Review the Pull Request created by the bot.\n    *   **Do not modify the Pull Request title or body**, as they are used for the release metadata.\n    *   Merge the Pull Request.\n    *   The workflow will automatically create a GitHub Release for you.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleoweyr%2Fgithub-release-workflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleoweyr%2Fgithub-release-workflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleoweyr%2Fgithub-release-workflow/lists"}