-
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.
* complete documentation * ✨ add template * 🚸 improve gh templates * ✏️ fix typo errors in gh templates --------- Co-authored-by: ManiMozaffar <[email protected]>
- Loading branch information
1 parent
d8b9c08
commit 4d9459e
Showing
4 changed files
with
90 additions
and
0 deletions.
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,12 @@ | ||
### Your checklist for this pull request | ||
🚨Please review the [guidelines for contributing](../CONTRIBUTING.md) to this repository. | ||
|
||
- [ ] Make sure you are requesting to **pull a topic/feature/bugfix branch** (right side). Don't request your master! | ||
- [ ] Make sure you have 100% test coverage | ||
- [ ] Check the commit's or even all commits' message styles matches our requested structure. | ||
- [ ] Check your code linting | ||
|
||
### Description | ||
Please describe your pull request. | ||
|
||
💔Thank you! |
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,47 @@ | ||
name: 🐞 Bug Report | ||
description: Tell us about something that's not working the way we (probably) intend. | ||
body: | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: OS | ||
options: | ||
- osx | ||
- linux | ||
- windows | ||
validations: | ||
required: false | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: Which Library version? | ||
placeholder: ex. 0.4.3 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: repro | ||
attributes: | ||
label: Steps to Reproduce | ||
description: How can we see what you're seeing? Specific is terrific. | ||
placeholder: |- | ||
1. What | ||
2. you | ||
3. did. | ||
Extra points for also including the output of `pip freeze --all`. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Result logs | ||
description: Logs? Screenshots? Yes, please. | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: |- | ||
## Thanks 🙏 | ||
validations: | ||
required: false |
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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Question or Problem | ||
about: Ask a question or ask about a problem in GitHub Discussions. | ||
url: https://t.me/fastcrawler |
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 @@ | ||
name: 💡 Feature Request | ||
description: Create a feature request for fastcrawler. | ||
labels: 'enhancement' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thanks for taking the time to file a feature request! Please fill out this form as completely as possible. | ||
- type: textarea | ||
id: usecase | ||
attributes: | ||
label: Use Case Statement | ||
description: A clear and concise description of what you want and what your use case is. | ||
placeholder: Well, I wanted to do ...., but it is not implemented | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Solution Brainstorm | ||
description: We know you have bright ideas to share ... share away, friend. | ||
placeholder: My idea is .... | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: Thanks 🙏 |