0.3.111 • Published 6 days ago

@amazon-codecatalyst/blueprint-component.issues v0.3.111

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
6 days ago

Components: Issues

In CodeCatalyst, you can monitor features, tasks, bugs, and any other work involved in your project. Each piece of work is kept in a distinct record called an issue. Each issue can have a description, assignee, status, and other properties, which you can search for, group and filter on. You can view your issues using the default views, or you can create your own views with custom filtering, sorting, or grouping. For more information about concepts related to issues, see Issues concepts and Quotas for issues.

The issue component generates a JSON representation of an issue. The component takes in an ID field and issue definition as input.

In your blueprint.ts, file, add the following:

import {...} from '@amazon-codecatalyst/blueprint-component.issues'

Example 1: Creating an issue

import { Issue } from '@amazon-codecatalyst/blueprint-component.issues';
...
new Issue(this, 'myFirstIssue', {
  title: 'myFirstIssue',
  content: 'this is an example issue',
});

Example 2: Creating a high-priority issue

import { Issue } from '@amazon-codecatalyst/blueprint-component.issues';
...
new Issue(this, 'mySecondIssue', {
  title: 'mySecondIssue',
  content: 'this is an example high priority issue',
  priority: 'HIGH',
});

Example 3: Creating a low-priority issue with labels

import { Issue } from '@amazon-codecatalyst/blueprint-component.issues';
...
new Issue(this, 'myThirdIssue', {
  title: 'myThirdIssue',
  content: 'this is an example of a low priority issue with a label',
  priority: 'LOW',
  labels: ['exampleLabel'],
});
0.3.111

6 days ago

0.3.110

11 days ago

0.3.109

14 days ago

0.3.108

15 days ago

0.3.107

17 days ago

0.3.105

19 days ago

0.3.106

19 days ago

0.3.103

20 days ago

0.3.104

20 days ago

0.3.101

21 days ago

0.3.102

21 days ago

0.3.100

24 days ago

0.3.99

24 days ago

0.3.98

25 days ago

0.3.97

26 days ago

0.3.96

27 days ago

0.3.95

28 days ago

0.3.94

1 month ago

0.3.93

1 month ago

0.3.92

1 month ago

0.3.91

1 month ago

0.3.90

1 month ago

0.3.89

1 month ago

0.3.88

1 month ago

0.3.87

1 month ago

0.3.86

2 months ago

0.3.85

2 months ago

0.3.84

2 months ago

0.3.82

2 months ago

0.3.81

2 months ago

0.3.80

2 months ago

0.3.79

2 months ago

0.3.78

2 months ago

0.3.77

2 months ago

0.3.76

2 months ago

0.3.75

2 months ago

0.3.74

2 months ago

0.3.73

2 months ago

0.3.72

2 months ago

0.3.71

2 months ago

0.3.70

2 months ago

0.3.69

2 months ago

0.3.68

2 months ago

0.3.67

2 months ago

0.3.66

2 months ago

0.3.65

2 months ago

0.3.62

2 months ago

0.3.61

2 months ago

0.3.60

2 months ago

0.0.0

7 months ago