Changeset View
Changeset View
Standalone View
Standalone View
.forgejo/pull_request_template.yml
- This file was added.
| name: 'PR template' | |||||
| about: 'Use a verb for your PR title. For example "Add X functionality"' | |||||
| ref: 'servant' | |||||
| body: | |||||
| - type: textarea | |||||
| id: summary | |||||
| attributes: | |||||
| label: 'Summary:' | |||||
| description: 'Describe the change.' | |||||
| placeholder: 'X and Y functionalities are both needed to implement Z. The funnction of W is refactored to use the technique of U. etc.' | |||||
| validations: | |||||
| required: true | |||||
| - type: dropdown | |||||
| id: changetype | |||||
| attributes: | |||||
| label: 'Type:' | |||||
| description: 'Type of the change. "add" for a new feature or change; "remove" for removing an existing feature/functionality; "fix" for a bug fix; "skip" for a change that is not visible for users (e.g. internal refactoring only). If you want to submit a security fix, please do not submit it here. Instead, send it via email or on IronLily. [See how to submit security fixes](https://kazv.chat/en/contributing/#bugs).' | |||||
| options: | |||||
| - add | |||||
| - remove | |||||
| - fix | |||||
| - skip | |||||
| validations: | |||||
| required: true | |||||
| - type: textarea | |||||
| id: testplan | |||||
| attributes: | |||||
| label: 'Test Plan:' | |||||
| description: 'How should the reviewers test that it works?' | |||||
| placeholder: 'Do X and Y. Verify you can see Z.' | |||||
| validations: | |||||
| required: true | |||||