Sha256: 2c42e0d1c4586ff39823904c5d79e064af0f780b017d290e3c6c2f2373c83345
Contents?: true
Size: 1.48 KB
Versions: 3
Compression:
Stored size: 1.48 KB
Contents
# Athenian::JIRAFilter ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **epics** | **Array<String>** | JIRA issues must be included in the epics from the list. | [optional] | | **labels_include** | **Array<String>** | Only issues having at least one label from the list will be included Several labels may be concatenated by a comma `,` so that all of them are required. | [optional] | | **labels_exclude** | **Array<String>** | Issues having one label from the list will be excluded. | [optional] | | **issue_types** | **Array<String>** | Issues must have one of the given types, e.g. Bug, Task, Design Document, etc. | [optional] | | **priorities** | **Array<String>** | Issues must have a priority from the given list. | [optional] | | **projects** | **Array<String>** | Issues must be contained in a project in the given project keys list. | [optional] | | **status_categories** | [**Array<JIRAStatusCategory>**](JIRAStatusCategory.md) | The JIRA issues must have a status belonging to one of these categories. | [optional] | | **unmapped** | **Boolean** | Select PRs that are not mapped to any JIRA issue. May not be specified with anything else. | [optional] | ## Example ```ruby require 'athenian' instance = Athenian::JIRAFilter.new( epics: null, labels_include: null, labels_exclude: null, issue_types: null, priorities: null, projects: null, status_categories: null, unmapped: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
athenian-2.1.86 | docs/JIRAFilter.md |
athenian-2.1.85 | docs/JIRAFilter.md |
athenian-2.1.81 | docs/JIRAFilter.md |