Skip to content

Commit 1f0e001

Browse files
committed
chore: github workflow templates
1 parent 1caa308 commit 1f0e001

11 files changed

Lines changed: 168 additions & 242 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 38 deletions
This file was deleted.
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: 🐞 Bug Report
2+
title: 'Give a title here'
3+
description: Report a bug
4+
labels: ['bug']
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
## First of all
11+
1. Please search for [existing issues](https://github.com/phcode-dev/phoenix/issues) about this problem first.
12+
2. Make sure `rustc` and all relevant Tauri packages are up to date.
13+
3. Make sure it's an issue with Tauri and not something else you are using.
14+
4. Remember to follow our community guidelines and be friendly.
15+
5. Gif screen recordings help more if present. You can use one of the below free screen recorders:
16+
1. windows: https://www.screentogif.com/
17+
2. mac: https://apps.apple.com/au/app/giphy-capture-the-gif-maker/id668208984?mt=12
18+
3. linux: https://github.com/phw/peek
19+
20+
- type: textarea
21+
id: description
22+
attributes:
23+
label: Describe the bug
24+
description: A clear description of what the bug is. Include screenshots if applicable.
25+
placeholder: Bug description
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: reproduction
31+
attributes:
32+
label: Reproduction
33+
description: Steps to reproduce the behavior.
34+
placeholder: |
35+
1. Go to ...
36+
2. Click on ...
37+
3. See error
38+
39+
- type: textarea
40+
id: expected-behavior
41+
attributes:
42+
label: Expected behavior
43+
description: A clear description of what you expected to happen.
44+
45+
- type: textarea
46+
id: info
47+
attributes:
48+
label: OS, Browser and Phoenix versions
49+
description: "goto Help menu > About Phoenix and copy the line that looks like `Release 3.0 development build 3.0.2-0`"
50+
placeholder: |
51+
1. OS: [e.g. macos]
52+
1. device: [mobile, tablet, desktop or other]
53+
2. Browser [e.g. chrome, safari]
54+
3. Version [e.g. Release 3.0 development build 3.0.2-0]
55+
validations:
56+
required: true
57+
58+
- type: textarea
59+
id: logs or debug stack trace if any
60+
attributes:
61+
label: Stack trace
62+
render: shell
63+
64+
- type: textarea
65+
id: context
66+
attributes:
67+
label: Additional context
68+
description: Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
contact_links:
2+
- name: 💬 Discord Chat
3+
url: https://discord.com/invite/rBpTBPttca
4+
about: Ask questions and talk to other Phoenix/Brackets users and the maintainers
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: 📚 Docs Report
3+
about: Create a report to help us improve the docs
4+
title: "[docs] "
5+
labels: 'documentation '
6+
assignees: ''
7+
8+
---

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: 💡 Feature Request
2+
title: '[feat] '
3+
description: Suggest an idea
4+
labels: 'Feature Request '
5+
6+
body:
7+
- type: textarea
8+
id: problem
9+
attributes:
10+
label: Describe the problem
11+
description: A clear description of the problem this feature would solve
12+
placeholder: "I'm always frustrated when..."
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: solution
18+
attributes:
19+
label: "Describe the solution you'd like"
20+
description: A clear description of what change you would like
21+
placeholder: "I would like to..."
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: alternatives
27+
attributes:
28+
label: Alternatives considered
29+
description: "Any alternative solutions you've considered"
30+
31+
- type: textarea
32+
id: context
33+
attributes:
34+
label: Additional context
35+
description: Add any other context about the problem here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!--
2+
Update "[ ]" to "[x]" to check a box
3+
-->
4+
5+
### What kind of change does this PR introduce?
6+
<!-- Check at least one. If you are introducing a new binding, you must reference an issue where this binding has been proposed, discussed and approved by the maintainers. -->
7+
8+
- [ ] Bugfix
9+
- [ ] Feature
10+
- [ ] Docs
11+
- [ ] New Binding issue #___
12+
- [ ] Code style update
13+
- [ ] Refactor
14+
- [ ] Build-related changes
15+
- [ ] Other, please describe:
16+
17+
### Does this PR introduce a breaking change?
18+
<!-- If yes, please describe the impact and migration path for existing applications in an attached issue. -->
19+
20+
- [ ] Yes, and the changes were approved in issue #___
21+
- [ ] No
22+
23+
### Checklist
24+
- [ ] When resolving issues, they are referenced in the PR's title (e.g `fix: remove a typo, closes #___, #___`)
25+
- [ ] A change file is added if any packages will require a version bump due to this PR per [the instructions in the readme](https://github.com/tauri-apps/tauri/blob/dev/.changes/readme.md).
26+
- [ ] I have added a convincing reason for adding this feature, if necessary
27+
28+
### Other information
29+
30+
31+
### pull request guidelines:
32+
* It's OK to have multiple small commits as you work on the PR - we will let GitHub automatically squash it before merging.
33+
* If adding new feature:, Provide convincing reason to add this feature. Ideally you should open a suggestion issue first and have it greenlighted before working on it.
34+
* If fixing a bug:Provide detailed description of the bug in the PR, or link to an issue that does.

.github/PULL_REQUEST_TEMPLATE/bug_fix.md

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

.github/PULL_REQUEST_TEMPLATE/new_feature.md

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

.github/PULL_REQUEST_TEMPLATE/remove_feature.md

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

0 commit comments

Comments
 (0)