A custom GitHub App to aid Ryujinx with project management and moderation
Find a file
2023-10-10 16:59:45 +02:00
.github Ensure python and pipx are installed 2023-10-10 14:34:26 +02:00
ryujinx_mako Improve help output 2023-10-10 16:59:25 +02:00
templates Create a new python package for the current scripts (#1) 2023-08-30 19:00:29 +02:00
.editorconfig Create a new python package for the current scripts (#1) 2023-08-30 19:00:29 +02:00
.gitignore Initial commit 2023-08-19 21:27:50 +02:00
action.yml Fix action_path references 2023-09-17 12:40:35 +02:00
LICENSE Create a new python package for the current scripts (#1) 2023-08-30 19:00:29 +02:00
poetry.lock Create a new python package for the current scripts (#1) 2023-08-30 19:00:29 +02:00
pyproject.toml Create a new python package for the current scripts (#1) 2023-08-30 19:00:29 +02:00
README.md Add required environment variables to README.md 2023-10-10 16:59:45 +02:00

Ryujinx-Mako

A custom GitHub App to aid Ryujinx with project management and moderation

Usage

Add the following step to your workflow:

- 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

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,update-reviewers}
    setup-git           Configure git identity for Ryujinx-Mako
    update-reviewers    Update reviewers for the specified PR

setup-git

usage: ryujinx_mako setup-git [-h] [-l]

Configure git identity for Ryujinx-Mako

options:
  -h, --help   show this help message and exit
  -l, --local  configure the 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    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

options:
  -h, --help   show this help message and exit