mirror of
https://code.forgejo.org/actions/git-backporting.git
synced 2025-02-23 02:55:43 -05:00
chore: add issue templates and improve pr template (#99)
This commit is contained in:
parent
9bcd6e6b55
commit
5afc464268
4 changed files with 66 additions and 10 deletions
23
.github/ISSUE_TEMPLATE/bug.md
vendored
Normal file
23
.github/ISSUE_TEMPLATE/bug.md
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
---
|
||||||
|
name: Bug report
|
||||||
|
about: Create a report to help us improve
|
||||||
|
title: ''
|
||||||
|
labels: 'bug'
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Describe the bug**
|
||||||
|
A clear and concise description of what the bug is.
|
||||||
|
|
||||||
|
**To Reproduce**
|
||||||
|
Steps to reproduce the behavior:
|
||||||
|
1. Do this '...'
|
||||||
|
2. Do that '....'
|
||||||
|
3. See error
|
||||||
|
|
||||||
|
**Expected behavior**
|
||||||
|
A clear and concise description of what you expected to happen.
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context about the problem here.
|
8
.github/ISSUE_TEMPLATE/chore.md
vendored
Normal file
8
.github/ISSUE_TEMPLATE/chore.md
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
name: Chore issue
|
||||||
|
about: General purpose issues related to chores, project management, etc.
|
||||||
|
title: ''
|
||||||
|
labels: 'chore'
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
20
.github/ISSUE_TEMPLATE/feature.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/feature.md
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
---
|
||||||
|
name: Feature request
|
||||||
|
about: Suggest an idea for this project
|
||||||
|
title: ''
|
||||||
|
labels: 'feature'
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Is your feature request related to a problem? Please describe.**
|
||||||
|
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||||
|
|
||||||
|
**Describe the solution you'd like**
|
||||||
|
A clear and concise description of what you want to happen.
|
||||||
|
|
||||||
|
**Describe alternatives you've considered**
|
||||||
|
A clear and concise description of any alternative solutions or features you've considered.
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context or screenshots about the feature request here.
|
25
.github/pull_request_template.md
vendored
25
.github/pull_request_template.md
vendored
|
@ -1,22 +1,27 @@
|
||||||
**Thank you for submitting this pull request**
|
**Thank you for submitting this pull request**
|
||||||
|
|
||||||
fix _(please add the issue ID if it exists)_
|
fixes _(please add the issue ID if it exists)_
|
||||||
|
|
||||||
### Referenced pull requests
|
## Description
|
||||||
|
<!--- Describe your changes in detail -->
|
||||||
|
|
||||||
<!-- Add URLs of all referenced pull requests if they exist. This is only required when making
|
## How Has This Been Tested?
|
||||||
changes that span multiple kiegroup repositories and depend on each other. -->
|
<!--- Please describe in detail how you tested your changes. -->
|
||||||
<!-- Example:
|
<!--- Include details of your testing environment, and the tests you ran to -->
|
||||||
- https://github.com/kiegroup/droolsjbpm-build-bootstrap/pull/1234
|
<!--- see how your change affects other areas of the code, etc. -->
|
||||||
- https://github.com/kiegroup/drools/pull/3000
|
|
||||||
- https://github.com/kiegroup/optaplanner/pull/899
|
|
||||||
- etc.
|
|
||||||
-->
|
|
||||||
|
|
||||||
### Checklist
|
### Checklist
|
||||||
- [ ] Tests added if applicable.
|
- [ ] Tests added if applicable.
|
||||||
- [ ] Documentation updated if applicable.
|
- [ ] Documentation updated if applicable.
|
||||||
|
|
||||||
|
### Merge criteria:
|
||||||
|
<!--- This PR will be merged by any repository approver when it meets all the points in the checklist -->
|
||||||
|
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
|
||||||
|
|
||||||
|
- [ ] The commits and have meaningful messages; the author will squash them _after approval_ or will ask to merge with squash.
|
||||||
|
- [ ] Testing instructions have been added in the PR body (for PRs involving changes that are not immediately obvious).
|
||||||
|
- [ ] The developer has manually tested the changes and verified that the changes work
|
||||||
|
|
||||||
> **Note:** `dist/cli/index.js` and `dist/gha/index.js` are automatically generated by git hooks and gh workflows.
|
> **Note:** `dist/cli/index.js` and `dist/gha/index.js` are automatically generated by git hooks and gh workflows.
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
|
|
Loading…
Add table
Reference in a new issue