Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Improve issue templates #450

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

82 changes: 82 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: 🐞Bug report
description: Create a bug report to help us improve
# title: ''
labels: [bug]
assignees: [tomschr]

body:
- type: markdown
attributes:
value: |
Thanks a lot for taking the time to fill out this bug report! 🐛
It will help us to improve the project for everyone. 🌟

Find help from the community on our [GitHub Discussions](https://github.com/python-semver/python-semver/discussions) page or
on our [Documentation](https://python-semver.readthedocs.io/en/latest/).

- type: dropdown
id: python_version
attributes:
label: Which version of Python is the problem with?
multiple: true
options:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
validation:
required: true

- type: input
id: semver_version
attributes:
label: What semver version are you using?
description: You can find this with `pip show semver`
placeholder: 3.0.2

- type: dropdown
id: os
attributes:
label: What OS are you using? (Add more in the Environment section)
multiple: true
options:
- Linux
- Windows
- macOS
- Other

- type: textarea
id: situation
attributes:
label: Situation
description: A clear and concise description of what the bug is.
placeholder: Describe the problem you see...

- type: textarea
id: reproduction_steps
attributes:
label: How to reproduce
description: |
Steps to reproduce the behavior:
1. Run '...'
2. Scroll down to '....'
3. See error
placeholder: Describe the steps to reproduce the issue...

- type: textarea
id: expected_behavior
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
placeholder: Describe the expected behavior...

- type: textarea
id: environment
attributes:
label: Environment
description: Optionally provide some more details about your environment.
placeholder: Describe your environment...
24 changes: 0 additions & 24 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Feature request
description: Suggest an idea for this project
# title: ''
labels: [enhancement]
assignees: [tomschr]

body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this feature request!

- type: textarea
id: situation
attributes:
label: Situation
description: A clear and concise description of what the feature is. Ex. I'm always frustrated when [...]
placeholder: Describe the situation...
validations:
required: true

- type: textarea
id: expected_solution
attributes:
label: Expected solution
description: A clear and concise description of what you want to happen.
placeholder: Describe the expected solution...
validations:
required: true

- type: textarea
id: alternatives
attributes:
label: Alternatives
description: A clear and concise description of any alternative solutions or features you've considered.
placeholder: Describe any alternatives...