Skip to content

Commit 808e15d

Browse files
committed
Update resources
1 parent 5f67194 commit 808e15d

File tree

11 files changed

+393
-372
lines changed

11 files changed

+393
-372
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 0 additions & 119 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
# yaml-language-server: $schema=https://json.schemastore.org/github-issue-forms.json
2+
name: "Bug Report"
3+
description: "Report a bug."
4+
labels:
5+
- "bug 🐛"
6+
body:
7+
- type: "input"
8+
id: "version"
9+
attributes:
10+
label: "Version"
11+
description: |-
12+
Which version occur this bug?
13+
14+
Version must be supported as of submit; Supported versions are listed in the Security Policy (file `SECURITY.md`).
15+
16+
For multiple versions, separate each version with comma-space (`, `), or use versions range syntax from [OSGi Semantic Versioning](https://docs.osgi.org/whitepaper/semantic-versioning/040-semantic-versions.html) or [Semantic Versioning 2.0.0](https://devhints.io/semver).
17+
placeholder: "1.0.2"
18+
validations:
19+
required: true
20+
- type: "textarea"
21+
id: "describe"
22+
attributes:
23+
label: "Describe"
24+
description: |-
25+
What the bug is?
26+
27+
If needed, use images, videos, or other types of media to help for explain this bug; Not accept any external resource.
28+
placeholder: |-
29+
It unable to XXXXXXXX.
30+
validations:
31+
required: true
32+
- type: "textarea"
33+
id: "reproduce"
34+
attributes:
35+
label: "To Reproduce"
36+
description: |-
37+
Is this bug able to reproduce? If so, please show the steps to reproduce.
38+
39+
If needed, use images, videos, or other types of media to help for explain the steps to reproduce; Not accept any external resource.
40+
placeholder: |-
41+
1. Go to XXXXXXXX.
42+
2. Click on XXXXXXXX.
43+
3. Scroll to XXXXXXXX.
44+
4. Encounter this bug.
45+
validations:
46+
required: false
47+
- type: "dropdown"
48+
id: "frequency"
49+
attributes:
50+
label: "Frequency"
51+
description: |-
52+
How often does this bug occur?
53+
options:
54+
- "Unknown / Untested"
55+
- "Always (~100%)"
56+
- "Frequently (~75%)"
57+
- "Half (~50%)"
58+
- "Sometimes (~25%)"
59+
- "Rarely (~5%)"
60+
multiple: false
61+
default: 0
62+
validations:
63+
required: true
64+
- type: "textarea"
65+
id: "environment"
66+
attributes:
67+
label: "Environment / Set Up"
68+
description: |-
69+
How is the environment/set-up? Different environments/set-ups maybe have different outcomes, provide this information maybe help for reproduce this bug.
70+
71+
These are common categories:
72+
73+
- **`type`:** Device type (e.g.: `computer`, `phone`, `server`).
74+
- **`cpu`:** Details of the central processing unit (e.g.: `Intel i7-6700`).
75+
- **`ram`:** Details of the random access memory (e.g.: `8 GB`).
76+
- **`storage`:** Details of the storage unit (e.g.: `500 GB SSD`).
77+
- **`network`:** Details of the network (e.g.: `Wi-Fi`).
78+
- **`gpu`:** Details of the graphics processing unit (e.g.: `NVIDIA GeForce RTX 4090`).
79+
- **`os`:** Details of the operate system (e.g.: `Windows 11 Professional 23H2 X64`).
80+
- **`programs`:** List of the installed programs (e.g.: `NodeJS 20.6.0 X64`, `Deno 1.36.0 X64`).
81+
- **`env`:** List of the environment variables (e.g.: `NO_COLOR=1`).
82+
83+
**[🖌️ YAML]**
84+
render: "yml"
85+
placeholder: |-
86+
type: [computer, server]
87+
os: Windows 11 Professional 23H2 X64
88+
programs: Deno 1.36.0 X64
89+
validations:
90+
required: false
91+
- type: "textarea"
92+
id: "additional"
93+
attributes:
94+
label: "Additional"
95+
description: |-
96+
Information which relevant to this bug but not suitable at other fields.
97+
validations:
98+
required: false

.github/ISSUE_TEMPLATE/documentation-issue.yml renamed to .github/ISSUE_TEMPLATE/documentation.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@
22
name: "Documentation Issue"
33
description: "Report a documentation issue."
44
labels:
5-
- "Type/Documentation 📓"
5+
- "documentation 📚"
66
body:
77
- type: "textarea"
88
id: "document"
99
attributes:
1010
label: "Document"
1111
description: |-
12-
Which document occur this issue?
12+
Which document path occur this issue?
1313
14-
> [!NOTE]
15-
> - Accept multiple documents.
14+
Accept glob syntax and multiple documents path.
15+
16+
**[🖌️ YAML]**
17+
render: "yml"
1618
placeholder: |-
1719
README.md
1820
validations:
@@ -22,17 +24,16 @@ body:
2224
attributes:
2325
label: "Describe"
2426
description: |-
25-
What the issue is? If needed, use images, videos, or other media type to help for explain this issue.
27+
What the issue is?
2628
27-
> [!NOTE]
28-
> - For external media, please ensure we are able to view those without any extra step.
29+
If needed, use images, videos, or other types of media to help for explain this issue; Not accept any external resource.
2930
validations:
3031
required: true
3132
- type: "textarea"
32-
id: "additional-information"
33+
id: "additional"
3334
attributes:
34-
label: "Additional Information"
35+
label: "Additional"
3536
description: |-
36-
If there have information which relevant to this issue but not suitable at other fields, please list those at here.
37+
Information which relevant to this issue but not suitable at other fields.
3738
validations:
3839
required: false
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# yaml-language-server: $schema=https://json.schemastore.org/github-issue-forms.json
2+
name: "Feature Request"
3+
description: "Suggest an idea."
4+
labels:
5+
- "enhancement 💡"
6+
body:
7+
- type: "textarea"
8+
id: "describe"
9+
attributes:
10+
label: "Describe"
11+
description: |-
12+
What feature do you want? Is your feature request related to a problem?
13+
14+
If needed, use images, videos, or other types of media to help for explain this feature; Not accept any external resource.
15+
validations:
16+
required: true
17+
- type: "textarea"
18+
id: "additional"
19+
attributes:
20+
label: "Additional"
21+
description: |-
22+
Information which relevant to this feature but not suitable at other fields.
23+
validations:
24+
required: false

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
version: 2
33
updates:
44
- package-ecosystem: "github-actions"
5-
directory: "/"
5+
directories:
6+
- "/"
67
schedule:
7-
interval: "daily"
8-
timezone: "Etc/UTC"
8+
interval: "weekly"
99
labels:
10-
- "Platform/GitHubActions"
11-
- "Type/Dependency 📦"
12-
open-pull-requests-limit: 100
10+
- "dependency 📦"
11+
- "github-actions"
1312
pull-request-branch-name:
1413
separator: "/"
14+
cooldown:
15+
default-days: 1

0 commit comments

Comments
 (0)