github_issues data source

blackstork/github, v0.4.2

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.2"
  }
}

Note the version constraint set for the plugin.

Configuration

The data source supports the following configuration arguments:

config data github_issues {
  # Required string.
  # For example:
  github_token = "some string"
}

Usage

The data source supports the following execution arguments:

data github_issues {
  # Required string.
  # For example:
  repository = "some string"

  # Optional string.
  # Default value:
  milestone = null

  # Optional string.
  # Default value:
  state = null

  # Optional string.
  # Default value:
  assignee = null

  # Optional string.
  # Default value:
  creator = null

  # Optional string.
  # Default value:
  mentioned = null

  # Optional list of string.
  # Default value:
  labels = null

  # Optional string.
  # Default value:
  sort = null

  # Optional string.
  # Default value:
  direction = null

  # Optional string.
  # Default value:
  since = null

  # Optional number.
  # Default value:
  limit = null
}