Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mergify_cli/github_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class PullRequest(typing.TypedDict):
node_id: str
merged_at: str | None
merge_commit_sha: str | None
mergeable: bool | None


class Comment(typing.TypedDict):
Expand Down
8 changes: 8 additions & 0 deletions mergify_cli/stack/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,18 +553,26 @@ async def sync(
is_flag=True,
help="Output in JSON format for scripting",
)
@click.option(
"--verbose",
"-v",
is_flag=True,
help="Show detailed CI check names and reviewer names",
)
@utils.run_with_asyncio
async def list_cmd(
ctx: click.Context,
*,
trunk: tuple[str, str],
output_json: bool,
verbose: bool,
) -> None:
await stack_list_mod.stack_list(
github_server=ctx.obj["github_server"],
token=ctx.obj["token"],
trunk=trunk,
output_json=output_json,
verbose=verbose,
)


Expand Down
Loading
Loading