Add a pull request template with some basic guidelines (#4055)

Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
hg 2024-08-26 03:01:02 +05:00 committed by GitHub
parent b73f19468f
commit dc83e90a33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

15
.github/pull_request_template.txt vendored Normal file
View file

@ -0,0 +1,15 @@
Please check the following tips:
1. Avoid using force-push and commands that require it (such as `commit --amend` and `rebase origin/main`). This makes it more difficult for the maintainers to review your work. Add new commits on top of the current branch, and merge the new state of `main` into your branch with plain `merge`.
2. Provide a meaningful title for this pull request. It will be used as the commit message when this pull request is merged. Add as many commits as you like with any messages you like, they will be squashed into one commit.
3. If this pull request fixes an issue, refer to the issue with messages like `Ref #1234`, `Closes #1234`, or `Fixes #1234` in the pull description.
4. Please check that you are targeting the `main` branch. Pull requests on release branches are only allowed for backports.
5. Make sure you have read contribution guidelines: https://woodpecker-ci.org/docs/development/getting-started
6. It is recommended to enable "Allow edits by maintainers", so maintainers can help you more easily.
Make sure to remove these tips (or replace them with a description) after you have read them.