github_issues data source

blackstork/github, v0.4.1

Installation

To use github_issues data source, you must install the plugin blackstork/github.

To install the plugin, add the full plugin name to the plugin_versions map in the Fabric global configuration block (see Global configuration for more details), as shown below:

fabric {
  plugin_versions = {
    "blackstork/github" = ">= v0.4.1"
  }
}

Note the version constraint set for the plugin.

Configuration

The data source supports the following configuration parameters:

config data github_issues {
    github_token = <string>  # required
}

Usage

The data source supports the following parameters in the data blocks:

data github_issues {
    assignee = <string>  # optional
    creator = <string>  # optional
    direction = <string>  # optional
    labels = <list of string>  # optional
    limit = <number>  # optional
    mentioned = <string>  # optional
    milestone = <string>  # optional
    repository = <string>  # required
    since = <string>  # optional
    sort = <string>  # optional
    state = <string>  # optional
}