Skip to content
Merged
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
57 changes: 57 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: "🐞 Bug report"
description: Report a problem or bug you found in the supplementary style guide.
labels: [bug]
body:
- type: dropdown
id: severity
attributes:
label: Severity
description: What is the impact of this bug?
options:
- Critical (blocks usage or causes data loss)
- Major (significant impact, but workaround exists)
- Minor (cosmetic or small impact)
- Trivial (no real impact)
validations:
required: true
- type: dropdown
id: priority
attributes:
label: Priority
description: How urgently should this be fixed?
options:
- P1 (highest)
- P2
- P3 (lowest)
validations:
required: true
- type: textarea
id: affected-pages
attributes:
label: Affected page(s)
description: Please provide a link (or links) to the page(s) where you found the bug.
placeholder: "https://github.com/redhat-documentation/supplementary-style-guide/path/to/page"
validations:
required: true
- type: textarea
id: describe-bug
attributes:
label: Describe the bug, along with repro steps
description: What went wrong? Be as specific as possible.
placeholder: "A clear and concise description of the bug."
validations:
required: true
- type: textarea
id: proposed-fix
attributes:
label: Describe the proposed fix
description: What fix do you recommend to resolve or improve this issue?
placeholder: "Describe your proposed fix here."
validations:
required: true
- type: markdown
attributes:
value: |
---
**Optional next step:**
After submitting this issue, you can help resolve it by [opening a pull request](https://github.com/redhat-documentation/supplementary-style-guide/compare) that references this issue.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
64 changes: 64 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: "✨ Enhancement request"
description: Suggest an improvement or new feature for the supplementary style guide.
labels: [enhancement]
body:
- type: dropdown
id: severity
attributes:
label: Severity
description: How important is this enhancement?
options:
- Critical (blocks usage or causes major problems)
- Major (highly desirable)
- Minor (nice to have)
- Trivial (minor improvement)
validations:
required: true
- type: dropdown
id: priority
attributes:
label: Priority
description: How urgently should this be addressed?
options:
- P1 (highest)
- P2
- P3 (lowest)
validations:
required: true
- type: textarea
id: relevant-pages
attributes:
label: Relevant page(s)
description: Link(s) to pages related to this enhancement.
placeholder: "https://github.com/redhat-documentation/supplementary-style-guide/path/to/page"
validations:
required: false
- type: textarea
id: proposed-change
attributes:
label: Describe the proposed change
description: What change or enhancement would you like to see?
placeholder: "Describe your proposed change here."
validations:
required: true
- type: textarea
id: change-justification
attributes:
label: Why is this change needed?
description: Why do you think this change is important? What problem does it solve or what improvement does it provide?
placeholder: "Explain the need for this enhancement."
validations:
required: true
- type: textarea
id: additional-context
attributes:
label: Additional context
description: Add any other context or screenshots about the enhancement here.
validations:
required: false
- type: markdown
attributes:
value: |
---
**Optional next step:**
After submitting this issue, you can help resolve it by [opening a pull request](https://github.com/redhat-documentation/supplementary-style-guide/compare) that references this issue.
Loading