Skip to content

Commit 53ee365

Browse files
committed
Standardize YAML indentation in issue templates
Updated indentation in all .github/ISSUE_TEMPLATE YAML files for consistency and readability. No functional changes; improves maintainability and clarity for contributors.
1 parent 12967bc commit 53ee365

File tree

281 files changed

+104664
-45430
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

281 files changed

+104664
-45430
lines changed

.devcontainer/docker-compose.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
version: "3.8"
22

33
services:
4-
stylescape-dev:
5-
image: ghcr.io/stylescape/stylescape-devcontainer/devcontainer:latest
6-
container_name: stylescape-dev-container
7-
environment:
8-
NODE_ENV: development
9-
# Add other environment variables here if needed
10-
volumes:
11-
- .:/workspace:cached
12-
- /workspace/node_modules # Ensures node_modules isn't overwritten by the bind mount
13-
ports:
14-
- "3000:3000"
15-
command: /usr/local/bin/start.sh
16-
healthcheck:
17-
test: ["CMD", "curl", "-f", "http://localhost:3000/"]
18-
interval: 30s
19-
timeout: 10s
20-
retries: 3
4+
stylescape-dev:
5+
image: ghcr.io/stylescape/stylescape-devcontainer/devcontainer:latest
6+
container_name: stylescape-dev-container
7+
environment:
8+
NODE_ENV: development
9+
# Add other environment variables here if needed
10+
volumes:
11+
- .:/workspace:cached
12+
- /workspace/node_modules # Ensures node_modules isn't overwritten by the bind mount
13+
ports:
14+
- "3000:3000"
15+
command: /usr/local/bin/start.sh
16+
healthcheck:
17+
test: ["CMD", "curl", "-f", "http://localhost:3000/"]
18+
interval: 30s
19+
timeout: 10s
20+
retries: 3
2121

2222
volumes:
23-
node_modules:
23+
node_modules:

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 175 additions & 175 deletions
Original file line numberDiff line numberDiff line change
@@ -14,180 +14,180 @@ assignees: []
1414
# =============================================================================
1515

1616
body:
17-
# Introduction
18-
# =============================================================================
19-
20-
- type: markdown
21-
attributes:
22-
value: |
23-
## Bug Report
24-
25-
Thank you for taking the time to report a bug! We highly value all bug reports and strive to address them.
26-
We appreciate your effort in highlighting a potential bug! To expedite our response and ensure clarity:
27-
28-
- Please furnish comprehensive details about the bug, focusing specifically on the features of this repository.
29-
- Kindly remember, this repository is managed by dedicated volunteers. We ask for your understanding and patience.
30-
- For clarity and ease of tracking, if you have multiple queries, suggestions, or issues, kindly create separate submissions for each.
31-
- Familiar with a solution? We're open to pull requests. Feel free to contribute!
32-
33-
# Details
34-
# =============================================================================
35-
36-
- type: markdown
37-
attributes:
38-
value: |
39-
### Details
40-
41-
- type: checkboxes
42-
id: issue-exists
43-
attributes:
44-
label: Existing Issues
45-
description: |
46-
Is there an existing issue for this?
47-
Please search to see if an issue already exists for the bug you encountered.
48-
options:
49-
- label: I have searched the existing issues
50-
required: true
51-
52-
- type: input
53-
id: feature
54-
validations:
55-
required: true
56-
attributes:
57-
label: Sample
58-
description: |
59-
Which feature are you having troubles with?
60-
Use the feature name or URL. We don't want to be spend all this time diagnosing issues about the wrong feature, do we?
61-
62-
# Behavior
63-
# =============================================================================
64-
65-
- type: markdown
66-
attributes:
67-
value: |
68-
### Behavior
69-
70-
- type: textarea
71-
id: steps-to-reproduce
72-
attributes:
73-
label: Steps to reproduce
74-
description: |
75-
How do you reproduce this? Please provide as much step-by-step detail as possible.
76-
placeholder: |
77-
1. In this environment...
78-
1. With this config...
79-
1. Run '...'
80-
1. See error...
81-
validations:
82-
required: true
83-
84-
- type: textarea
85-
id: expected-behavior
86-
attributes:
87-
label: Expected behavior
88-
description: |
89-
A clear and concise description of what you expected to happen.
90-
placeholder: |
91-
When I do '...', I expect '...'
92-
validations:
93-
required: true
94-
95-
- type: textarea
96-
id: actual-behavior
97-
attributes:
98-
label: Actual behavior
99-
description: |
100-
A clear and concise description of what actually happens.
101-
placeholder: |
102-
When I do '...', what actually happens is '...'
103-
validations:
17+
# Introduction
18+
# =============================================================================
19+
20+
- type: markdown
21+
attributes:
22+
value: |
23+
## Bug Report
24+
25+
Thank you for taking the time to report a bug! We highly value all bug reports and strive to address them.
26+
We appreciate your effort in highlighting a potential bug! To expedite our response and ensure clarity:
27+
28+
- Please furnish comprehensive details about the bug, focusing specifically on the features of this repository.
29+
- Kindly remember, this repository is managed by dedicated volunteers. We ask for your understanding and patience.
30+
- For clarity and ease of tracking, if you have multiple queries, suggestions, or issues, kindly create separate submissions for each.
31+
- Familiar with a solution? We're open to pull requests. Feel free to contribute!
32+
33+
# Details
34+
# =============================================================================
35+
36+
- type: markdown
37+
attributes:
38+
value: |
39+
### Details
40+
41+
- type: checkboxes
42+
id: issue-exists
43+
attributes:
44+
label: Existing Issues
45+
description: |
46+
Is there an existing issue for this?
47+
Please search to see if an issue already exists for the bug you encountered.
48+
options:
49+
- label: I have searched the existing issues
10450
required: true
10551

106-
- type: dropdown
107-
id: frequency
108-
attributes:
109-
label: How often does the issue occur?
110-
description: |
111-
How frequently do you encounter this issue?
112-
options:
113-
- Every time
114-
- Occasionally
115-
- Rarely
116-
- Just once
117-
validations:
118-
required: false
119-
120-
# Environment
121-
# =============================================================================
122-
123-
- type: markdown
124-
attributes:
125-
value: |
126-
### Environment
127-
128-
Add relevant information about the environment in which this issue occurs.
129-
130-
- type: input
131-
id: operating-system
132-
attributes:
133-
label: Operating System
134-
description: |
135-
What operating system are you using?
136-
placeholder: |
137-
e.g. Windows 10, macOS Big Sur
138-
validations:
139-
required: false
140-
141-
- type: input
142-
id: software-version
143-
attributes:
144-
label: Software Version
145-
description: |
146-
What version of the software are you using?
147-
placeholder: |
148-
e.g. 1.0.0
149-
validations:
150-
required: false
151-
152-
- type: input
153-
id: hardware-specs
154-
attributes:
155-
label: Hardware Specifications
156-
description: |
157-
Please mention any relevant hardware details, such as CPU, GPU, RAM, etc.
158-
placeholder: |
159-
e.g. Intel i5, 8GB RAM, Nvidia GTX 1060
160-
validations:
161-
required: false
162-
163-
# Additional
164-
# =============================================================================
165-
166-
- type: markdown
167-
attributes:
168-
value: |
169-
### Additional
170-
171-
- type: textarea
172-
id: additional-context
173-
attributes:
174-
label: Additional context
175-
description: |
176-
Add any other context, screenshots, or relevant information about the bug here.
177-
178-
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
179-
placeholder: |
180-
"Add context here"
181-
validations:
182-
required: false
183-
184-
- type: textarea
185-
id: logs
186-
attributes:
187-
label: Logs or Error Messages
188-
description: |
189-
If possible, include any logs or error messages related to the bug.
190-
placeholder: |
191-
"Paste the logs or error messages here"
192-
validations:
193-
required: false
52+
- type: input
53+
id: feature
54+
validations:
55+
required: true
56+
attributes:
57+
label: Sample
58+
description: |
59+
Which feature are you having troubles with?
60+
Use the feature name or URL. We don't want to be spend all this time diagnosing issues about the wrong feature, do we?
61+
62+
# Behavior
63+
# =============================================================================
64+
65+
- type: markdown
66+
attributes:
67+
value: |
68+
### Behavior
69+
70+
- type: textarea
71+
id: steps-to-reproduce
72+
attributes:
73+
label: Steps to reproduce
74+
description: |
75+
How do you reproduce this? Please provide as much step-by-step detail as possible.
76+
placeholder: |
77+
1. In this environment...
78+
1. With this config...
79+
1. Run '...'
80+
1. See error...
81+
validations:
82+
required: true
83+
84+
- type: textarea
85+
id: expected-behavior
86+
attributes:
87+
label: Expected behavior
88+
description: |
89+
A clear and concise description of what you expected to happen.
90+
placeholder: |
91+
When I do '...', I expect '...'
92+
validations:
93+
required: true
94+
95+
- type: textarea
96+
id: actual-behavior
97+
attributes:
98+
label: Actual behavior
99+
description: |
100+
A clear and concise description of what actually happens.
101+
placeholder: |
102+
When I do '...', what actually happens is '...'
103+
validations:
104+
required: true
105+
106+
- type: dropdown
107+
id: frequency
108+
attributes:
109+
label: How often does the issue occur?
110+
description: |
111+
How frequently do you encounter this issue?
112+
options:
113+
- Every time
114+
- Occasionally
115+
- Rarely
116+
- Just once
117+
validations:
118+
required: false
119+
120+
# Environment
121+
# =============================================================================
122+
123+
- type: markdown
124+
attributes:
125+
value: |
126+
### Environment
127+
128+
Add relevant information about the environment in which this issue occurs.
129+
130+
- type: input
131+
id: operating-system
132+
attributes:
133+
label: Operating System
134+
description: |
135+
What operating system are you using?
136+
placeholder: |
137+
e.g. Windows 10, macOS Big Sur
138+
validations:
139+
required: false
140+
141+
- type: input
142+
id: software-version
143+
attributes:
144+
label: Software Version
145+
description: |
146+
What version of the software are you using?
147+
placeholder: |
148+
e.g. 1.0.0
149+
validations:
150+
required: false
151+
152+
- type: input
153+
id: hardware-specs
154+
attributes:
155+
label: Hardware Specifications
156+
description: |
157+
Please mention any relevant hardware details, such as CPU, GPU, RAM, etc.
158+
placeholder: |
159+
e.g. Intel i5, 8GB RAM, Nvidia GTX 1060
160+
validations:
161+
required: false
162+
163+
# Additional
164+
# =============================================================================
165+
166+
- type: markdown
167+
attributes:
168+
value: |
169+
### Additional
170+
171+
- type: textarea
172+
id: additional-context
173+
attributes:
174+
label: Additional context
175+
description: |
176+
Add any other context, screenshots, or relevant information about the bug here.
177+
178+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
179+
placeholder: |
180+
"Add context here"
181+
validations:
182+
required: false
183+
184+
- type: textarea
185+
id: logs
186+
attributes:
187+
label: Logs or Error Messages
188+
description: |
189+
If possible, include any logs or error messages related to the bug.
190+
placeholder: |
191+
"Paste the logs or error messages here"
192+
validations:
193+
required: false

0 commit comments

Comments
 (0)