-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from PunGrumpy/dev/ci
Make CI/CD to look better
- Loading branch information
Showing
6 changed files
with
169 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: πͺ² Bug Report | ||
description: Report a bug or issue with the project. | ||
title: 'bug: ' | ||
labels: ['bug'] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Did you use latest version? | ||
description: Please check the latest version before reporting a bug. | ||
options: | ||
- label: I have checked the latest version. | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Platform | ||
description: What platform(s) does this affect? | ||
options: | ||
- π§ Linux | ||
- π macOS | ||
- πͺ Windows | ||
- type: dropdown | ||
attributes: | ||
label: Priority | ||
description: How important is this issue? | ||
options: | ||
- π₯ Critical | ||
- π¨ High | ||
- π§ Medium | ||
- π€ Low | ||
- type: textarea | ||
attributes: | ||
label: Description | ||
description: Describe the bug or issue. | ||
placeholder: | | ||
Describe the bug or issue. | ||
render: Markdown | ||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce | ||
description: Describe the steps to reproduce the bug or issue. | ||
placeholder: | | ||
Describe the steps to reproduce the bug or issue. | ||
render: Markdown | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: Describe what you expected to happen. | ||
placeholder: | | ||
Describe what you expected to happen. | ||
render: Markdown | ||
- type: textarea | ||
attributes: | ||
label: Actual Behavior | ||
description: Describe what actually happened. | ||
placeholder: | | ||
Describe what actually happened. | ||
render: Markdown | ||
- type: textarea | ||
attributes: | ||
label: Additional Information | ||
description: Provide any additional information, such as screenshots or logs. | ||
placeholder: | | ||
Provide any additional information, such as screenshots or logs. | ||
render: Markdown | ||
- type: textarea | ||
attributes: | ||
label: Reproduction Repository | ||
description: Provide a link to a reproduction repository. | ||
placeholder: | | ||
Provide a link to a reproduction repository. | ||
render: Markdown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: 𧧠Feature Request | ||
description: Suggest a new feature or enhancement. | ||
title: 'feature: ' | ||
labels: ['enhancement'] | ||
body: | ||
- type: dropdown | ||
attributes: | ||
label: Priority | ||
description: How important is this feature request? | ||
options: | ||
- π₯ Critical | ||
- π¨ High | ||
- π§ Medium | ||
- π€ Low | ||
- type: input | ||
attributes: | ||
label: Title | ||
description: A clear and concise description of what the problem is. | ||
placeholder: | | ||
A clear and concise description of what the problem is. | ||
- type: textarea | ||
attributes: | ||
label: Description | ||
description: Describe the feature or enhancement. | ||
placeholder: | | ||
Describe the feature or enhancement. | ||
render: Markdown | ||
- type: textarea | ||
attributes: | ||
label: Additional Information | ||
description: Provide any additional information or context. | ||
placeholder: | | ||
Provide any additional information or context. | ||
render: Markdown | ||
- type: textarea | ||
attributes: | ||
label: Alternatives | ||
description: Describe any alternatives you've considered. | ||
placeholder: | | ||
Describe any alternatives you've considered. | ||
render: Markdown | ||
- type: textarea | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context or screenshots about the feature request here. | ||
placeholder: | | ||
Add any other context or screenshots about the feature request here. | ||
render: Markdown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
'source': | ||
- 'src/**/*.{js,jsx,ts,tsx}' | ||
|
||
'test': | ||
- 'src/**/__tests__/*.{js,jsx,ts,tsx}' | ||
- 'src/**/*.{spec,test}.{js,jsx,ts,tsx}' | ||
|
||
'lint': | ||
- '.eslintrc.js' | ||
- '.prettierrc.js' | ||
|
||
'ci/cd': | ||
- '.github/workflows/**/*.{yml,yaml}' | ||
|
||
'changelog': | ||
- 'CHANGELOG.md' | ||
|
||
'config': | ||
- 'package.json' | ||
- 'bun.lockb' | ||
|
||
'ignore': | ||
- '**/node_modules/**' | ||
- '**/dist/**' | ||
- '**/build/**' | ||
- '**/coverage/**' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## `π«` Pull Request Template | ||
|
||
### `π§βπ«` Description | ||
|
||
Describe the changes you made and why you made them. If you are fixing an issue, please mention it here. | ||
|
||
### `πΈ` Screenshots | ||
|
||
If you are changing the UI, please include screenshots of the changes. | ||
|
||
### `π` Related Issues | ||
|
||
If you are fixing an issue, please mention it here. | ||
|
||
### `π` Checklist | ||
|
||
- [ ] I have tested the changes locally. | ||
- [ ] I have added tests for the changes. | ||
- [ ] I have updated the documentation accordingly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters