plugins

Home

Plugins

GitHub

Blog

gh-pr-list

version: 0.0.7 |  date: 06/27/2021 |  Get PRs list for a GutHub repository |  source code

# SYNOPSIS

Get a PRs list for a GutHub repository

# INSTALL

    $ s6 --install gh-pr-list

# USAGE

Cli

    s6 --plg-run gh-pr-list
    s6 --plg-run gh-pr-list@state=closed
    s6 --plg-run gh-pr-list@repo="/path/to/repo1 /path/to/repo2  /path/to/repo3" # local repos: repo1, repo2, repo3
    s6 --plg-run gh-pr-list@repo=https://github.com/melezhik/sparrow-plugins.git # repo could be a git URL


Raku

    my %state = task-run "open pr", "gh-pr-list", %(
      repo => "repo1 repo2 repo3"
      state => "open"
    );

    say %state<list>;

# Parameters

## state

PR state. Default value is `open`

## repo

Either:

* Local git repositories, represented by folders paths:

    repo => "repo1" # repo in ./repo1 folder

    repo => "projects/repo1 projects/repo2" # 2 repositories repo1 and repo2 in ./projects folder

    repo => "/home/melezhik/projects/repo1" # You can use absolute paths

Or:

* git URL

  repo => "https://github.com/melezhik/sparrow-plugins.git"

# Platforms supported

* Linux
* MacOS


# Requirements

MacOS - GH cli should be installed

# Author

Alexey Melezhik