{"id":25311650,"url":"https://github.com/setzero/gitautomaton","last_synced_at":"2026-04-27T20:32:52.695Z","repository":{"id":42483500,"uuid":"476892313","full_name":"SetZero/GitAutomaton","owner":"SetZero","description":"GitAutomaton is a Git automation client","archived":false,"fork":false,"pushed_at":"2022-04-06T18:19:31.000Z","size":33,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-07T12:20:02.901Z","etag":null,"topics":["git","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/SetZero.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}},"created_at":"2022-04-01T23:09:30.000Z","updated_at":"2022-04-03T20:17:13.000Z","dependencies_parsed_at":"2022-09-09T11:11:51.352Z","dependency_job_id":null,"html_url":"https://github.com/SetZero/GitAutomaton","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SetZero/GitAutomaton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SetZero%2FGitAutomaton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SetZero%2FGitAutomaton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SetZero%2FGitAutomaton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SetZero%2FGitAutomaton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SetZero","download_url":"https://codeload.github.com/SetZero/GitAutomaton/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SetZero%2FGitAutomaton/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32354567,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"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":["git","python"],"created_at":"2025-02-13T14:53:34.016Z","updated_at":"2026-04-27T20:32:52.679Z","avatar_url":"https://github.com/SetZero.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitAutomaton Client\n\nGitAutomaton is a utility client which allows you to automate certain common git tasks.\n\n## Automate Tasks\n\nGitAutomaton enables to automation of the following common tasks:\n- Version increment\n- Update Submodule to the latest version of a Ticket\n\n## Supports Multiple Profiles\n\nGitAutomaton allows the usage of multiple profiles, which can be especially useful if you are working on multiple projects\n\n## Usage\n\nGitAutomaton uses a config file and command line parameters for configuration.\n\n### Config\n\n```yaml\n# list of all available profiles\nconfig:\n  # profile with name 'default'\n  default:\n    remote: local                                             # name of remote repository\n    ticket_structure: \"(mybla#[0-9]+)\"                        # regex used for tickets inside of branches/commits\n    default_branch: main                                      # default branch used for non-feature-branch commits\n    versioning:                                               # versioning information\n      file: \"conanfile.py\"                                    # file containing version information, currently only one supported\n      version_string_match: 'version = \\\"(\\d+\\.\\d+\\.\\d+)+\\\"'  # regex to use for version changing\n    commit_messages:                                          # commit messages\n      update_submodule: \"{ticket_id}: update submodule\"       # commit message on submodule update\n```\n| Key                             | Description                                                                                                                                                           |\n|---------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| remote                          | Name of the remote branch which should be used for information gathering of most current git changes                                                                  |\n| ticket structure                | Ticket structure is used to identify ticket information inside of your commits / branches, e.g. branch `mybla#1-test-branch` or commit `mybla#1: chaned testing data` |\n| versioning/file                 | File used for versioning information. This file will contain a version string which will be updated                                                                   |\n| versioning/version_string_match | Regex to match the version information. The regex must match a version string seperated by a \".\". The maximum depth is 3. Examples are `42`, `7.77`, `47.1.1`         |\n\n\n### Command Line Parameters\n\n| Parameter               | Description                                                               |\n|-------------------------|---------------------------------------------------------------------------|\n| -h                      | Show help                                                                 |\n| -r, --repo              | specify repository which will be used, e.g. `/home/repos/example-project` |\n| -c, --config            | specify config location (see [Config](#Config)), e.g. `./my-config.yaml`  |\n| -p, --profile           | Profile from config which you want to use, e.g. `default`                 |\n| -i, --increment-version | Increment version, possible values: `major`, `patch`, `minor`             |\n| -f                      | update submodule from feature branch with ticket id in branch name        |\n\n\n**Example Usage**\n```console\npython3 gauto.py --repo ./demo_repo --config /home/dev/config/local.yaml --profile default -i minor -f\n```\n\nit is recommended to alias GitAutomaton client:\n```bash\nalias gauto=python3 gauto.py --config /home/dev/config/local.yaml --profile default\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsetzero%2Fgitautomaton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsetzero%2Fgitautomaton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsetzero%2Fgitautomaton/lists"}