Skip to content

Commit 872520a

Browse files
authored
Added issue and merge request templates (baserow#4088)
1 parent 135c487 commit 872520a

File tree

4 files changed

+102
-0
lines changed

4 files changed

+102
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: 🪲 Bug Report
2+
description: Report a reproducible bug in Baserow.
3+
labels: ["needs feedback ⚠️", "bug 🪲"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
If you have a question about Baserow, please post it on the community forum:
9+
https://community.baserow.io/
10+
11+
- type: textarea
12+
id: describe-problem
13+
attributes:
14+
label: Describe the problem
15+
description: A brief description of the bug.
16+
validations:
17+
required: true
18+
19+
- type: textarea
20+
id: steps
21+
attributes:
22+
label: Steps to reproduce
23+
description: List the steps required to reproduce the error.
24+
placeholder: |
25+
1. Go to '...'
26+
2. Click on '...'
27+
3. See error
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: actual-result
33+
attributes:
34+
label: Actual result
35+
description: What currently happens in Baserow.
36+
validations:
37+
required: true
38+
39+
- type: textarea
40+
id: expected-result
41+
attributes:
42+
label: Expected result
43+
description: What you expected to happen instead.
44+
validations:
45+
required: true
46+
47+
- type: textarea
48+
id: environment
49+
attributes:
50+
label: Environment
51+
description: Describe how you're running Baserow.
52+
placeholder: |
53+
- Operating System: Windows/Ubuntu/Mac/etc.
54+
- Web Browser: Chrome / Firefox / Edge / Safari
55+
- Deployment Type: baserow.io / docker / other
56+
- Baserow Version: 1.8 / 1.7 / develop

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 💬 Community Forum
4+
url: https://community.baserow.io/
5+
about: Ask questions and brainstorm ideas with the community.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: 💡 Feature Request
2+
description: Suggest an idea or feature for Baserow.
3+
labels: ["needs feedback ⚠️", "feature request 💡"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
If you have a vague idea or want feedback, please use the community forum first:
9+
https://community.baserow.io/
10+
11+
- type: textarea
12+
id: feature-description
13+
attributes:
14+
label: Feature description
15+
description: What is the desired new feature?
16+
validations:
17+
required: true
18+
19+
- type: textarea
20+
id: examples
21+
attributes:
22+
label: Examples
23+
description: Are there any examples of this feature in other software?

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
### What is in this PR
2+
- E.g. a short explanation of what this pull request does.
3+
4+
### How to test this PR
5+
- E.g. a short series of steps on how to test the features/bug fixes in this PR.
6+
7+
### Checklist
8+
9+
- [ ] A changelog entry has been added to `changelog/entries/unreleased` using `changelog/src/changelog.py`
10+
- [ ] New/updated **Premium/Enterprise features** are separated correctly in the premium or enterprise folder
11+
- [ ] The latest **Chrome and Firefox** have been used to test any new frontend features
12+
- [ ] [Documentation](https://github.com/baserow/baserow/blob/master/docs/index.md) has been updated
13+
- [ ] [Quality Standards](https://github.com/baserow/baserow/blob/master/CONTRIBUTING.md#quality-standards) are met
14+
- [ ] **Performance**: tables are still fast with 100k+ rows, 100+ field tables
15+
- [ ] The [redoc API pages](https://api.baserow.io/api/redoc/) have been updated for any REST API changes
16+
- [ ] Our [custom API docs](https://github.com/baserow/baserow/blob/master/web-frontend/modules/database/pages/APIDocsDatabase.vue) are updated for changes to endpoints accessed via API tokens
17+
- [ ] The UI/UX has been updated following the [UI Style Guide](https://baserow.io/style-guide)
18+
- [ ] Security impact of change has been considered

0 commit comments

Comments
 (0)