{"id":19121730,"url":"https://github.com/kbrashears5/github-action-release-maker","last_synced_at":"2025-06-18T06:35:13.299Z","repository":{"id":103765320,"uuid":"293637374","full_name":"kbrashears5/github-action-release-maker","owner":"kbrashears5","description":"Github Action to create a release when triggered","archived":false,"fork":false,"pushed_at":"2023-09-11T05:10:30.000Z","size":26,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-19T18:39:58.756Z","etag":null,"topics":["creator","maker","release","utilities"],"latest_commit_sha":null,"homepage":"https://github.com/kbrashears5/github-action-release-maker","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/kbrashears5.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}},"created_at":"2020-09-07T21:37:30.000Z","updated_at":"2023-08-01T22:15:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"74f19f1a-cc87-49af-a6c8-a3a241219a51","html_url":"https://github.com/kbrashears5/github-action-release-maker","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kbrashears5%2Fgithub-action-release-maker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kbrashears5%2Fgithub-action-release-maker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kbrashears5%2Fgithub-action-release-maker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kbrashears5%2Fgithub-action-release-maker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kbrashears5","download_url":"https://codeload.github.com/kbrashears5/github-action-release-maker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240177051,"owners_count":19760308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["creator","maker","release","utilities"],"created_at":"2024-11-09T05:18:17.469Z","updated_at":"2025-02-22T12:47:18.310Z","avatar_url":"https://github.com/kbrashears5.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# github-action-release-maker\n\nGithub Action to create a release when triggered\n\n[![version](https://img.shields.io/github/v/release/kbrashears5/github-action-release-maker)](https://img.shields.io/github/v/release/kbrashears5/github-action-release-maker)\n\n# Use Cases\nHave releases be created automatically as part of your CI/CD, using your last commit message\n\n# Setup\nCreate a new file called `/.github/workflows/release-maker.yml` that looks like so:\n```yaml\nname: Release Maker\n\non:\n  repository_dispatch:\n    types:\n      - release\n\njobs:\n  release_maker:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Release Maker\n        uses: kbrashears5/github-action-release-maker@v1.0.3\n        with:\n          VERSION: ${{ github.event.client_payload.version }}\n          TOKEN: ${{ secrets.ACTIONS }}\n```\n## Parameters\n| Parameter | Required | Description |\n| --- | --- | --- |\n| VERSION | true | Version name to give the release |\n| TOKEN | true | Personal Access Token with Repo scope |\n\n## Invoking\n### cURL\n```bash\ncurl \\\n  -X POST \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  -d '{\"event_type\":\"release\",\"client_payload\":{\"version\":\"v1.0.0\"}}' \\\n  https://api.github.com/repos/{username}/{repo-name}/dispatches\n```\n\n### Azure DevOps Pipeline\nSee my yaml [templates](https://github.com/kbrashears5/yaml/blob/main/templates/create-github-release.yml) on how to use.\n\nThis template will use the build number as the version of the package.\n\nYou'll need to create a variable group called `github`, with a secret variable called `GITHUB_TOKEN`, with a token with repo:public_repo scope. See my yaml [example](https://github.com/kbrashears5/yaml/blob/main/examples/azure-pipelines-node.yml) on how to use.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkbrashears5%2Fgithub-action-release-maker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkbrashears5%2Fgithub-action-release-maker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkbrashears5%2Fgithub-action-release-maker/lists"}