mirror of
https://github.com/Ryujinx/Ryujinx-Mako.git
synced 2025-08-16 12:51:02 +00:00
Add more information to README.md
This commit is contained in:
parent
311534b45c
commit
a54bc3c4b6
71
README.md
71
README.md
|
@ -1,3 +1,74 @@
|
||||||
# Ryujinx-Mako
|
# Ryujinx-Mako
|
||||||
|
|
||||||
A custom GitHub App to aid Ryujinx with project management and moderation
|
A custom GitHub App to aid Ryujinx with project management and moderation
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
1. Add the following steps to your workflow:
|
||||||
|
|
||||||
|
```yml
|
||||||
|
- name: Checkout Ryujinx-Mako
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
repository: Ryujinx/Ryujinx-Mako
|
||||||
|
ref: master
|
||||||
|
path: ".ryujinx-mako"
|
||||||
|
|
||||||
|
- name: Setup Ryujinx-Mako
|
||||||
|
uses: .ryujinx-mako/.github/actions/setup-mako
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Execute the available commands like this:
|
||||||
|
|
||||||
|
```yml
|
||||||
|
- name: Setup git identity for Ryujinx-Mako
|
||||||
|
run: |
|
||||||
|
poetry -C .ryujinx-mako shell
|
||||||
|
# ryujinx-mako <command> [<args>]
|
||||||
|
# for example:
|
||||||
|
ryujinx-mako setup-git
|
||||||
|
```
|
||||||
|
|
||||||
|
## Available commands
|
||||||
|
|
||||||
|
```
|
||||||
|
usage: ryujinx_mako [-h] {setup-git,update-reviewers} ...
|
||||||
|
|
||||||
|
A python module to aid Ryujinx with project management and moderation
|
||||||
|
|
||||||
|
options:
|
||||||
|
-h, --help show this help message and exit
|
||||||
|
|
||||||
|
subcommands:
|
||||||
|
setup-git Set git identity to Ryujinx-Mako
|
||||||
|
|
||||||
|
update-reviewers Update reviewers for the specified PR
|
||||||
|
```
|
||||||
|
|
||||||
|
### setup-git
|
||||||
|
|
||||||
|
```
|
||||||
|
usage: ryujinx_mako setup-git [-h] [-l]
|
||||||
|
|
||||||
|
Set git identity to Ryujinx-Mako
|
||||||
|
|
||||||
|
options:
|
||||||
|
-h, --help show this help message and exit
|
||||||
|
-l, --local Set git identity only for the current repository.
|
||||||
|
```
|
||||||
|
|
||||||
|
### update-reviewers
|
||||||
|
|
||||||
|
```
|
||||||
|
usage: ryujinx_mako update-reviewers [-h] repo_path pr_number config_path
|
||||||
|
|
||||||
|
Update reviewers for the specified PR
|
||||||
|
|
||||||
|
positional arguments:
|
||||||
|
repo_path
|
||||||
|
pr_number
|
||||||
|
config_path
|
||||||
|
|
||||||
|
options:
|
||||||
|
-h, --help show this help message and exit
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue