Skip to content

m end_release

End the release process.

Merges the release/hotfix branch into the master branch.

Source code in m/cli/commands/end_release.py
class Arguments(BaseModel):
    """End the release process.

    Merges the release/hotfix branch into the master branch.
    """

    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