{"id":26364611,"url":"https://github.com/felixdorn/release-that","last_synced_at":"2025-03-16T19:22:02.961Z","repository":{"id":57657362,"uuid":"241340303","full_name":"felixdorn/release-that","owner":"felixdorn","description":"Automated release system for GitHub repositories.","archived":false,"fork":false,"pushed_at":"2025-01-05T17:57:27.000Z","size":3207,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-05T21:07:48.791Z","etag":null,"topics":["bump","git","publish","release-automation","release-helper","semver","tool"],"latest_commit_sha":null,"homepage":"","language":"Go","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/felixdorn.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}},"created_at":"2020-02-18T11:07:39.000Z","updated_at":"2025-01-05T17:57:31.000Z","dependencies_parsed_at":"2022-08-26T05:21:20.314Z","dependency_job_id":null,"html_url":"https://github.com/felixdorn/release-that","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixdorn%2Frelease-that","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixdorn%2Frelease-that/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixdorn%2Frelease-that/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felixdorn%2Frelease-that/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/felixdorn","download_url":"https://codeload.github.com/felixdorn/release-that/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243918640,"owners_count":20368745,"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":["bump","git","publish","release-automation","release-helper","semver","tool"],"created_at":"2025-03-16T19:22:02.411Z","updated_at":"2025-03-16T19:22:02.940Z","avatar_url":"https://github.com/felixdorn.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rt\n\n\u003e Just testing go.\n\nRt, short for release that, is a tool for quickly creating GitHub releases.\n\n## Installation\n\n```bash\ncurl -L https://github.com/felixdorn/release-that/releases/latest/download/release-that -o /usr/bin/rt\nchmod +x /usr/bin/rt\n```\n\nOnce you have installed the binary, you'll need to login to GitHub.\n\n```bash\nrt --login\n```\n\nYour personal access token is stored in `~/.rtauth` with restricted permissions (0600).\n\n## Configuration\n\n`rt` can work without any configuration, however if you want to customize the release name, contents..., you can create\none with the following command:\n\n```bash\nrt --init\n```\n\nThe default configuration can be found [here](_config.json), it looks like this:\n\n```json\n{\n  \"release_notes\": {\n    \"title\": \"Release :version\",\n    \"commit_format\": \"* :hash: :message\"\n  },\n  \"before_release\": [],\n  \"after_release\": [],\n  \"assets\": [],\n  \"tag_message\": \"Version :tag\"\n}\n```\n\n\u003c!-- This sentence has been written by Github Copilot ¯\\_(ツ)_/¯ --\u003e\n`before_release` and `after_release` are an array of commands that will be executed before and after the release\nprocess.\n\n`assets` is an array of files that will be uploaded along with the release.\n\nYou can use various placeholders in the following keys:\n\n* tag_message:\n    * `:tag` / `:version`\n* release_notes.title:\n    * `:tag` / `:version`\n* release_notes.commit_format:\n    * `:hash`\n    * `:longHash`\n    * `:message`\n    * `:author.name`\n    * `:author.email`\n* before_release:\n    * `:tag` / `:version`\n    * `:commit`\n    * `:longCommit`\n* after_release:\n    * `:tag` / `:version`\n    * `:commit`\n    * `:longCommit`\n\n## Usage\n\nYou can release a new version with the following command:\n\n```bash\nrt --patch # rt -p\nrt --minor # rt -m\nrt --major # rt -M\nrt --custom 4.24.5-linux+stripped \n```\n\nThe custom version must be a valid semver version.\n\n* `--skip-hooks`\n\n  Skips the execution of the `before_release` and `after_release` hooks. You may specify which hooks to\n  skip `--skip-hooks before_release,after_release`. You may also pass `no` to run every hook (the default).\n\n* `-q, --quiet`\n\n  Suppresses the output of the release process, the only thing printed is the released version.\n\n* `-D, --dry-run`\n\n  Prints the release notes and the release tag, but does not actually create the release.\n\n* `-Q, --no-ansi`\n\n  Disables ANSI colors in the output.\n\n* `-u, --self-update`\n\n  Updates the `rt` binary to the latest version.\n\n* `-v, --version`\n\n  Prints the current version of `rt`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelixdorn%2Frelease-that","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffelixdorn%2Frelease-that","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelixdorn%2Frelease-that/lists"}