mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-01-13 04:07:25 -08:00
chore: use form templates
This commit is contained in:
parent
053d26f421
commit
4056d4a417
31
.github/ISSUE_TEMPLATE.md
vendored
31
.github/ISSUE_TEMPLATE.md
vendored
|
@ -1,31 +0,0 @@
|
||||||
### Prerequisites
|
|
||||||
|
|
||||||
- [ ] I have read and understood the `CONTRIBUTING` guide
|
|
||||||
- [ ] I have looked for duplicate issues before submitting this one
|
|
||||||
|
|
||||||
### Description
|
|
||||||
|
|
||||||
[Description of the bug or feature]
|
|
||||||
|
|
||||||
### Environment
|
|
||||||
|
|
||||||
- Oh My Posh version:
|
|
||||||
- Theme:
|
|
||||||
- Operating System:
|
|
||||||
- Shell:
|
|
||||||
- Terminal:
|
|
||||||
|
|
||||||
#### Optional
|
|
||||||
|
|
||||||
- posh-git version:
|
|
||||||
- git version:
|
|
||||||
|
|
||||||
### Steps to Reproduce
|
|
||||||
|
|
||||||
1. [First Step]
|
|
||||||
2. [Second Step]
|
|
||||||
3. [and so on...]
|
|
||||||
|
|
||||||
**Expected behavior:** [What you expected to happen]
|
|
||||||
|
|
||||||
**Actual behavior:** [What actually happened]
|
|
67
.github/ISSUE_TEMPLATE/bug.yml
vendored
Normal file
67
.github/ISSUE_TEMPLATE/bug.yml
vendored
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
name: Bug Report
|
||||||
|
description: File a bug report
|
||||||
|
labels: [bug]
|
||||||
|
assignees:
|
||||||
|
- jandedobbeleer
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Thanks for taking the time to fill out this bug report!
|
||||||
|
- type: checkboxes
|
||||||
|
id: terms
|
||||||
|
attributes:
|
||||||
|
label: Code of Conduct
|
||||||
|
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/JanDeDobbeleer/oh-my-posh/blob/main/CONTRIBUTING.md)
|
||||||
|
options:
|
||||||
|
- label: I agree to follow this project's Code of Conduct
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: what-happened
|
||||||
|
attributes:
|
||||||
|
label: What happened?
|
||||||
|
description: Also tell us, what did you expect to happen?
|
||||||
|
placeholder: Tell us what you see!
|
||||||
|
value: "A bug happened!"
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: version
|
||||||
|
attributes:
|
||||||
|
label: Version
|
||||||
|
description: What version of oh-my-posh are you running?
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: theme
|
||||||
|
attributes:
|
||||||
|
label: Theme
|
||||||
|
description: Which theme/config are you using?
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
id: operating-system
|
||||||
|
attributes:
|
||||||
|
label: What OS are you seeing the problem on?
|
||||||
|
multiple: true
|
||||||
|
options:
|
||||||
|
- Windows
|
||||||
|
- Linux
|
||||||
|
- macOS
|
||||||
|
- type: dropdown
|
||||||
|
id: shell
|
||||||
|
attributes:
|
||||||
|
label: Which shell are you using?
|
||||||
|
multiple: true
|
||||||
|
options:
|
||||||
|
- zsh
|
||||||
|
- bash
|
||||||
|
- fish
|
||||||
|
- powershell
|
||||||
|
- other (please specify)
|
||||||
|
- type: textarea
|
||||||
|
id: logs
|
||||||
|
attributes:
|
||||||
|
label: Relevant log output
|
||||||
|
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
||||||
|
render: shell
|
11
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
11
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
blank_issues_enabled: false
|
||||||
|
contact_links:
|
||||||
|
- name: Oh My Posh FAQ
|
||||||
|
url: https://ohmyposh.dev/docs/faq
|
||||||
|
about: Please find common issues here.
|
||||||
|
- name: Oh My Posh Docs
|
||||||
|
url: https://ohmyposh.dev/docs
|
||||||
|
about: RTFM
|
||||||
|
- name: Oh My Posh Q&A
|
||||||
|
url: https://github.com/JanDeDobbeleer/oh-my-posh/discussions
|
||||||
|
about: Please ask questions here.
|
27
.github/ISSUE_TEMPLATE/feat.yml
vendored
Normal file
27
.github/ISSUE_TEMPLATE/feat.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
name: Feature Request
|
||||||
|
description: Request a new feature
|
||||||
|
labels: [feat]
|
||||||
|
assignees:
|
||||||
|
- jandedobbeleer
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Thanks for taking the time to request a new feature!
|
||||||
|
- type: checkboxes
|
||||||
|
id: terms
|
||||||
|
attributes:
|
||||||
|
label: Code of Conduct
|
||||||
|
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/JanDeDobbeleer/oh-my-posh/blob/main/CONTRIBUTING.md)
|
||||||
|
options:
|
||||||
|
- label: I agree to follow this project's Code of Conduct
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: feature-request
|
||||||
|
attributes:
|
||||||
|
label: What would you like to see changed/added?
|
||||||
|
description: Try to give some examples to make it really clear!
|
||||||
|
placeholder: Tell us what you would like to see!
|
||||||
|
value: "Something new and amazing!"
|
||||||
|
validations:
|
||||||
|
required: true
|
Loading…
Reference in a new issue