samples
turbot/flowpipe-samples/list-github-repository-issues-authors
Pipelines
0
Triggers
0
Variables
GitHub

Paginate HTTP List Call Response

List the authors of GitHub repository issues.

Installation

Download and install Flowpipe (https://flowpipe.io/downloads). Or use Brew:

brew tap turbot/tap
brew install flowpipe

Clone:

git clone https://github.com/turbot/flowpipe-samples.git
cd software_development/list_github_repository_issues_authors

Install mod dependencies:

flowpipe mod install

Credentials

By default, the following environment variables will be used for authentication:

  • GITHUB_TOKEN

You can also create credential resources in configuration files:

vi creds.fpc
credential "github" "default" {
token = "ghp_..."
}

For more information on credentials in Flowpipe, please see Managing Credentials.

Usage

Run the pipeline to get list of GitHub repository issues authors:

flowpipe pipeline run list_github_repository_issues_authors --arg repository_owner=turbot --arg repository_name=flowpipe

Configuration

No additional configuration is required.