Skip to content

m start_hotfix

Start the release process for a hotfix.

A hotfix should always be done in the master branch.

It may also require input from the developer to proceed with certain operations.

Source code in m/cli/commands/start_hotfix.py
class Arguments(BaseModel):
    """Start the release process for a hotfix.

    A hotfix should always be done in the master branch.

    It may also require input from the developer to proceed with
    certain operations.
    """

    github_token: str = ArgProxy(
        '--github-token',
        default='GITHUB_TOKEN',
        type=env_var,
        help='Github personal access token with repo scope',
    )

Options

--github-token

  • default: env.GITHUB_TOKEN

Github personal access token with repo scope