Skip to content

Commit 4dc4029

Browse files
committed
chore: add issue & pr templates
1 parent 2c63b60 commit 4dc4029

File tree

6 files changed

+180
-0
lines changed

6 files changed

+180
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: 🐞 Bug report (When using)
2+
description: Report an issue or possible bug when using `anse.app`
3+
labels: ['pending triage', 'use']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
### Before submitting...
9+
Thanks for taking the time to fill out this bug report! Please confirm the following points before submitting:
10+
11+
✅ I am using Anse's **official site** ([anse.app](https://anse.app)) or a fork version that has not been modified much.
12+
✅ I have checked the bug was not already reported by searching on GitHub under issues.
13+
✅ Use English to ask questions. This allows more people to search and participate in the issue.
14+
- type: input
15+
id: os
16+
attributes:
17+
label: What operating system are you using?
18+
placeholder: Mac, Windows, Linux
19+
validations:
20+
required: true
21+
- type: input
22+
id: browser
23+
attributes:
24+
label: What browser are you using?
25+
placeholder: Chrome, Firefox, Safari
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: bug-description
30+
attributes:
31+
label: Describe the bug
32+
description: A clear and concise description of what the bug is.
33+
placeholder: Bug description
34+
validations:
35+
required: true
36+
- type: dropdown
37+
id: provider
38+
attributes:
39+
label: What provider are you using?
40+
description: If the issue is related to a provider, please fill in this field.
41+
options:
42+
- N/A
43+
- OpenAI
44+
- Stable Diffusion
45+
- Others (Specify in description)
46+
- type: textarea
47+
id: prompt
48+
attributes:
49+
label: What prompt did you enter?
50+
description: If the issue is related to the prompt you entered, please fill in this field.
51+
- type: textarea
52+
id: console-logs
53+
attributes:
54+
label: Console Logs
55+
description: Please check your browser and fill in the error message if it exists.
56+
- type: checkboxes
57+
id: will-pr
58+
attributes:
59+
label: Participation
60+
options:
61+
- label: I am willing to submit a pull request for this issue.
62+
required: false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: 🐞 Bug report (When self-deploying)
2+
description: Report an issue or possible bug when deploy to your own server or cloud.
3+
labels: ['pending triage', 'deploy']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
### Before submitting...
9+
Thanks for taking the time to fill out this bug report! Please confirm the following points before submitting:
10+
11+
✅ I am using **latest version of Anse**.
12+
✅ I have checked the bug was not already reported by searching on GitHub under issues.
13+
✅ Use English to ask questions. This allows more people to search and participate in the issue.
14+
- type: dropdown
15+
id: server
16+
attributes:
17+
label: How is Anse deployed?
18+
description: Select the used deployment method.
19+
options:
20+
- Node
21+
- Docker
22+
- Vercel
23+
- Netlify
24+
- Railway
25+
- Others (Specify in description)
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: bug-description
30+
attributes:
31+
label: Describe the bug
32+
description: A clear and concise description of what the bug is.
33+
placeholder: Bug description
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: console-logs
38+
attributes:
39+
label: Console Logs
40+
description: Please check your browser and node console, fill in the error message if it exists.
41+
- type: checkboxes
42+
id: will-pr
43+
attributes:
44+
label: Participation
45+
options:
46+
- label: I am willing to submit a pull request for this issue.
47+
required: false

.github/ISSUE_TEMPLATE/config.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 📚 Documentation
4+
url: https://docs.anse.app/
5+
about: Check the documentation for usage of Anse, or make improvements to it.
6+
- name: ⏱️ Roadmap
7+
url: https://github.com/orgs/anse-app/projects/2
8+
about: Explore upcoming features.
9+
- name: 💬 Discussions
10+
url: https://github.com/anse-app/anse/discussions
11+
about: Use discussions if you have an idea for improvement or for asking questions.
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: 🚀 Feature request
2+
description: Suggest a feature or an improvement
3+
labels: ['enhancement']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for taking the time to fill out this feature request!
9+
- type: textarea
10+
id: feature-description
11+
attributes:
12+
label: Describe the feature
13+
description: A clear and concise description of what you think would be a helpful addition.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: additional-context
18+
attributes:
19+
label: Additional context
20+
description: Any other context or screenshots about the feature request here.
21+
- type: checkboxes
22+
id: will-pr
23+
attributes:
24+
label: Participation
25+
options:
26+
- label: I am willing to submit a pull request for this feature.
27+
required: false

.github/ISSUE_TEMPLATE/typo.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: 👀 Typo / Grammar fix
2+
description: You can just go ahead and send a PR! Thank you!
3+
labels: []
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
## PR Welcome!
9+
10+
If the typo / grammar issue is trivial and straightforward, you can help by **directly sending a quick pull request**!
11+
If you spot multiple of them, we suggest combining them into a single PR. Thanks!
12+
- type: textarea
13+
id: context
14+
attributes:
15+
label: Additional context

.github/PULL_REQUEST_TEMPLATE.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!-- DO NOT IGNORE THE TEMPLATE!
2+
Thank you for contributing!
3+
Before submitting the PR, please make sure you do the following:
4+
- Discuss first. It's always better to open a feature request issue first to discuss with the maintainers whether the feature is desired and the design of those features.
5+
- Use [Conventional Commits](https://www.conventionalcommits.org/) for commit messages.
6+
- Check that there isn't already a PR that solves the problem the same way to avoid creating a duplicate.
7+
-->
8+
9+
### Description
10+
11+
<!-- Please insert your description here and provide especially info about the "what" this PR is solving -->
12+
13+
### Linked Issues
14+
15+
16+
### Additional context
17+
18+
<!-- e.g. is there anything you'd like reviewers to focus on? -->

0 commit comments

Comments
 (0)