Skip to content

Commit db07c99

Browse files
limhjgraceqhanam
andauthored
chore: Add GitHub issues templates (#398)
* chore: Add GitHub issues templates * Add SPA vs. MPA question to bug report * Fix typo * Refactor to lighten the template restrictions and requirements * Update feature request template description * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Quinn Hanam <[email protected]> * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Quinn Hanam <[email protected]> * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Quinn Hanam <[email protected]> * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Quinn Hanam <[email protected]> * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Quinn Hanam <[email protected]> * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Quinn Hanam <[email protected]> * Update .github/ISSUE_TEMPLATE/general_inquiries.yml Co-authored-by: Quinn Hanam <[email protected]> * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Quinn Hanam <[email protected]> --------- Co-authored-by: Quinn Hanam <[email protected]>
1 parent 41a9101 commit db07c99

File tree

4 files changed

+79
-0
lines changed

4 files changed

+79
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Bug Report
2+
description: Report a bug/issue
3+
title: '[Bug]: '
4+
labels: ['bug-report']
5+
6+
body:
7+
- type: textarea
8+
id: version
9+
attributes:
10+
label: Which web client version did you detect this bug with?
11+
value: |
12+
v1.13.3
13+
validations:
14+
required: true
15+
- type: textarea
16+
id: build
17+
attributes:
18+
label: What environment (build systems, module system, and framework) did you detect this bug with?
19+
value: |
20+
TypeScript v5.0.2, Webpack v4.46.0, ECMAScript modules (ESM) and React v18.2.0
21+
validations:
22+
required: true
23+
- type: dropdown
24+
id: web-app-pages
25+
attributes:
26+
label: Is your web application a single page application (SPA) or multi page application (MPA)?
27+
multiple: false
28+
options:
29+
- SPA
30+
- MPA
31+
- type: textarea
32+
id: config
33+
attributes:
34+
label: Please provide your web client configuration
35+
value: |
36+
{
37+
allowCookies: true,
38+
endpoint: "https://dataplane.rum.us-west-2.amazonaws.com",
39+
guestRoleArn: "arn:aws:iam::000000000000:role/RUM-Monitor-us-west-2-000000000000-00xx-Unauth",
40+
identityPoolId: "us-west-2:00000000-0000-0000-0000-000000000000",
41+
sessionSampleRate: 1,
42+
telemetries: ['errors', 'performance', 'http']
43+
}
44+
validations:
45+
required: false
46+
- type: textarea
47+
id: bug-details
48+
attributes:
49+
label: Please describe the bug/issue
50+
description: Provide as much detail as possible. Include details on how to reproduce the bug.
51+
validations:
52+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Feature request
2+
description: Suggest new features or enhancements
3+
title: '[Feature Request]: '
4+
labels: ['enhancement']
5+
6+
body:
7+
- type: textarea
8+
id: feature
9+
attributes:
10+
label: Please provide your feature request
11+
description: What problem are you trying to solve? How would this feature be used?
12+
validations:
13+
required: true
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: General inquiry
2+
description: Start a discussion not related to a bug or feature request
3+
title: '[General Inquiry]: '
4+
labels: ['question']
5+
6+
body:
7+
- type: textarea
8+
id: general-inquiry
9+
attributes:
10+
label: What is your general inquiry?
11+
description: Please provide as much detail as possible.
12+
validations:
13+
required: true

0 commit comments

Comments
 (0)