8000 chore: improve github issue templates by divine · Pull Request #7031 · libgit2/libgit2 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore: improve github issue templates #7031

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
19 changes: 0 additions & 19 deletions .github/ISSUE_TEMPLATE

This file was deleted.

45 changes: 45 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: "\U0001F41E Bug report"
description: Create a report to help us improve
title: "[Bug]: "
labels: ["bug"]
body:
- type: textarea
id: reproduction
attributes:
label: Reproduction steps
placeholder: Reproduction
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected behavior
placeholder: Expected behavior
validations:
required: true

- type: textarea
id: actual
attributes:
label: Actual behavior
placeholder: Actual behavior
validations:
required: true

- type: textarea
id: version
attributes:
label: Version of libgit2
placeholder: Version of libgit2
description: |
(release number or SHA1)
render: shell-script
validations:
required: true

- type: textarea
id: operating-system
attributes:
label: Operating system(s) tested
placeholder: Operating system(s) tested
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
blank_issues_enabled: false
contact_links:
- name: 🆘 Questions & Support
url: http://stackoverflow.com/questions/tagged/libgit2
about: Ask on StackOverflow.
- name: 💬 Discussions
url: https://github.com/libgit2/discussions
about: Join high-level discussions about the libgit2 project.
- name: 💡 Feature Request
url: https://github.com/libgit2/libgit2/issues/new?template=feature-request.yml
about: Suggest improvements.
- name: 🐞 Bug Report
url: https://github.com/libgit2/libgit2/issues/new?template=bug-report.yml
about: Encountered a bug? Report it on GitHub Issues.
52 changes: 52 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: "\U0001F4A1 Feature request"
description: Suggest an enhancement for libgit2
title: "[Feature]: "
labels: ["feature"]

body:
- type: markdown
attributes:
value: |
Thank you for contributing to libgit2's development.

- type: textarea
id: problem-description
attributes:
label: Problem Description
description: Explain the current limitation or challenge in libgit2
placeholder: "I'm encountering difficulties with [specific Git operation/functionality]..."
validations:
required: true

- type: textarea
id: solution
attributes:
label: Proposed Solution
description: Describe your proposed enhancement for libgit2
placeholder: "It would be helpful if the library could support/improve..."
validations:
required: true

- type: textarea
id: use-cases
attributes:
label: Use Cases
description: Provide specific scenarios where this feature would be valuable
validations:
required: false

- type: textarea
id: alternatives
attributes:
label: Alternative Approaches
description: Describe any alternative solutions you've considered
validations:
required: false

- type: textarea
id: additional-context
attributes:
label: Additional Information
description: Include code snippets, error logs, or other relevant context
validations:
required: false
0