mirror of
https://github.com/Ryujinx/Ryujinx-Mako.git
synced 2025-08-16 02:31:13 +00:00
Adjust help messages for ryujinx tasks as well
This commit is contained in:
parent
f48002636e
commit
f7c1baf281
|
@ -31,14 +31,14 @@ class ExecRyujinxTasks(GithubSubcommand):
|
||||||
"--event-name",
|
"--event-name",
|
||||||
type=str,
|
type=str,
|
||||||
required=True,
|
required=True,
|
||||||
help="The name of the event that triggered the workflow run.",
|
help="the name of the event that triggered the workflow run",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--event-path",
|
"--event-path",
|
||||||
type=str,
|
type=str,
|
||||||
required=True,
|
required=True,
|
||||||
help="The path to the file on the runner that contains the full "
|
help="the path to the file on the runner that contains the full "
|
||||||
"event webhook payload.",
|
"event webhook payload",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-w",
|
"-w",
|
||||||
|
@ -46,19 +46,19 @@ class ExecRyujinxTasks(GithubSubcommand):
|
||||||
type=Path,
|
type=Path,
|
||||||
required=False,
|
required=False,
|
||||||
default=Path(os.getcwd()),
|
default=Path(os.getcwd()),
|
||||||
help="The working directory on the runner."
|
help="the working directory on the runner"
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"repo_path",
|
"repo_path",
|
||||||
type=str,
|
type=str,
|
||||||
required=True,
|
required=True,
|
||||||
help="The path to a GitHub repository."
|
help="full name of the GitHub repository (format: OWNER/REPO)",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"run_id",
|
"run_id",
|
||||||
type=int,
|
type=int,
|
||||||
required=True,
|
required=True,
|
||||||
help="The unique identifier of the workflow run.",
|
help="The unique identifier of the workflow run",
|
||||||
)
|
)
|
||||||
super().__init__(parser)
|
super().__init__(parser)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue