mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-28 12:29:40 -08:00
chore: add issue templates
This commit is contained in:
parent
3d2f0ab0ef
commit
534805a39f
25
.github/ISSUE_TEMPLATE.md
vendored
Normal file
25
.github/ISSUE_TEMPLATE.md
vendored
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
### Prerequisites
|
||||||
|
|
||||||
|
- [ ] I have read and understand the `CONTRIBUTING` guide
|
||||||
|
- [ ] I looked for duplicate issues before submitting this one
|
||||||
|
|
||||||
|
### Description
|
||||||
|
|
||||||
|
[Description of the bug or feature]
|
||||||
|
|
||||||
|
### Environment
|
||||||
|
|
||||||
|
- Oh my Posh version:
|
||||||
|
- Operating System:
|
||||||
|
- Shell:
|
||||||
|
- Terminal:
|
||||||
|
|
||||||
|
### 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]
|
12
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
12
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
### Prerequisites
|
||||||
|
|
||||||
|
- [ ] I have read and understand the `CONTRIBUTING` guide
|
||||||
|
- [ ] The commit message follows the [conventional commits][cc] guidelines
|
||||||
|
- [ ] Tests for the changes have been added (for bug fixes / features)
|
||||||
|
- [ ] Docs have been added / updated (for bug fixes / features)
|
||||||
|
|
||||||
|
### Description
|
||||||
|
|
||||||
|
[Description of the change]
|
||||||
|
|
||||||
|
[cc]: https://www.conventionalcommits.org/en/v1.0.0/#summary
|
2
.github/workflows/code.yml
vendored
2
.github/workflows/code.yml
vendored
|
@ -5,6 +5,8 @@ on:
|
||||||
- 'CONTRIBUTING.md'
|
- 'CONTRIBUTING.md'
|
||||||
- 'COPYING'
|
- 'COPYING'
|
||||||
- 'docs/**'
|
- 'docs/**'
|
||||||
|
- '.github/*.md'
|
||||||
|
- '.github/FUNDING.yml'
|
||||||
|
|
||||||
name: Validate Code
|
name: Validate Code
|
||||||
jobs:
|
jobs:
|
||||||
|
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -9,6 +9,8 @@ on:
|
||||||
- 'CONTRIBUTING.md'
|
- 'CONTRIBUTING.md'
|
||||||
- 'COPYING'
|
- 'COPYING'
|
||||||
- 'docs/**'
|
- 'docs/**'
|
||||||
|
- '.github/*.md'
|
||||||
|
- '.github/FUNDING.yml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
|
|
Loading…
Reference in a new issue