2023-08-19 19:27:50 +00:00
|
|
|
# Ryujinx-Mako
|
2023-08-30 17:00:29 +00:00
|
|
|
|
2023-08-19 19:27:50 +00:00
|
|
|
A custom GitHub App to aid Ryujinx with project management and moderation
|
2023-08-30 17:00:29 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2024-01-27 19:49:49 +00:00
|
|
|
Add the following step to your workflow:
|
|
|
|
|
|
|
|
```yml
|
|
|
|
- name: Run Ryujinx-Mako
|
|
|
|
uses: Ryujinx/Ryujinx-Mako@master
|
|
|
|
with:
|
|
|
|
command: <Mako subcommand>
|
|
|
|
args: <subcommand args>
|
|
|
|
app_id: ${{ secrets.MAKO_APP_ID }}
|
|
|
|
private_key: ${{ secrets.MAKO_PRIVATE_KEY }}
|
|
|
|
installation_id: ${{ secrets.MAKO_INSTALLATION_ID }}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Required environment variables
|
|
|
|
|
|
|
|
- `MAKO_APP_ID`: the GitHub App ID
|
|
|
|
- `MAKO_PRIVATE_KEY`: the contents of the GitHub App private key
|
|
|
|
- `MAKO_INSTALLATION_ID`: the GitHub App installation ID
|
2023-08-30 17:00:29 +00:00
|
|
|
|
|
|
|
## Available commands
|
|
|
|
|
|
|
|
```
|
2024-01-27 19:49:49 +00:00
|
|
|
usage: ryujinx_mako [-h] {setup-git,update-reviewers,exec-ryujinx-tasks} ...
|
2023-08-30 17:00:29 +00:00
|
|
|
|
|
|
|
A python module to aid Ryujinx with project management and moderation
|
|
|
|
|
|
|
|
options:
|
|
|
|
-h, --help show this help message and exit
|
|
|
|
|
|
|
|
subcommands:
|
2024-01-27 19:49:49 +00:00
|
|
|
{setup-git,update-reviewers,exec-ryujinx-tasks}
|
|
|
|
setup-git Configure git identity for Ryujinx-Mako
|
|
|
|
update-reviewers Update reviewers for the specified PR
|
|
|
|
exec-ryujinx-tasks Execute all Ryujinx tasks for a specific event
|
2023-08-30 17:00:29 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### setup-git
|
|
|
|
|
|
|
|
```
|
|
|
|
usage: ryujinx_mako setup-git [-h] [-l]
|
|
|
|
|
2024-01-27 19:49:49 +00:00
|
|
|
Configure git identity for Ryujinx-Mako
|
2023-08-30 17:00:29 +00:00
|
|
|
|
|
|
|
options:
|
|
|
|
-h, --help show this help message and exit
|
2024-01-27 19:49:49 +00:00
|
|
|
-l, --local configure the git identity only for the current repository
|
2023-08-30 17:00:29 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### update-reviewers
|
|
|
|
|
|
|
|
```
|
|
|
|
usage: ryujinx_mako update-reviewers [-h] repo_path pr_number config_path
|
|
|
|
|
|
|
|
Update reviewers for the specified PR
|
|
|
|
|
|
|
|
positional arguments:
|
2024-01-27 19:49:49 +00:00
|
|
|
repo_path full name of the GitHub repository (format: OWNER/REPO)
|
|
|
|
pr_number the number of the pull request to check
|
|
|
|
config_path the path to the reviewers config file
|
2023-08-30 17:00:29 +00:00
|
|
|
|
|
|
|
options:
|
|
|
|
-h, --help show this help message and exit
|
|
|
|
```
|
2024-01-27 19:49:49 +00:00
|
|
|
|
|
|
|
### exec-ryujinx-tasks
|
|
|
|
|
|
|
|
```
|
|
|
|
usage: ryujinx_mako exec-ryujinx-tasks [-h] --event-name EVENT_NAME
|
|
|
|
--event-path EVENT_PATH [-w WORKSPACE]
|
|
|
|
repo_path run_id
|
|
|
|
|
|
|
|
Execute all Ryujinx tasks for a specific event
|
|
|
|
|
|
|
|
positional arguments:
|
|
|
|
repo_path full name of the GitHub repository (format:
|
|
|
|
OWNER/REPO)
|
|
|
|
run_id The unique identifier of the workflow run
|
|
|
|
|
|
|
|
options:
|
|
|
|
-h, --help show this help message and exit
|
|
|
|
--event-name EVENT_NAME
|
|
|
|
the name of the event that triggered the workflow run
|
|
|
|
--event-path EVENT_PATH
|
|
|
|
the path to the file on the runner that contains the
|
|
|
|
full event webhook payload
|
|
|
|
-w WORKSPACE, --workspace WORKSPACE
|
|
|
|
the working directory on the runner
|
|
|
|
```
|