Document Purpose
This document is a guide for maintainers to account for all the reccomended steps before merging in a pull request.
Checklist
Is the branch's theoretical functionality in scope?
If you're not sure if a branch's functionality is in scope, start a conversation on Discord to resolve.
Does the branch successfully compile?
From make clean, the branch should locally compile.
Do all CI tests pass?
Contributors are asked to make sure tests pass locally, but maintainers should at least wait for the CI to pass before merging.
Have you verified that the functionality works in game without any problems?
If functionality cannot be verified with an automated test, proof of an in game test is required. Do not be afraid to reach out to the contributor or the community to make sure something works in game as it should.
If the branch ports behavior from another Pokémon game, have you verified that the behavior functions as faithfully as possible?
We have always tried to make sure we can mimic the original functionality as closely as possible so as to avoid confusion with users and players. Do not be afraid to ask the contributor / community for proof if you cannot personally verify.
If the branch is a popular feature within the community with an established feature branch, is this using that established branch as a base?
There are situations where this should and should not happen, and should be discussed with maintainers on a case by case basis.
If this branch changes a function that is expected to be modified by users, is there a migration script?
Not everything needs a migration script - if you're unsure, start a discussion.
Should new functionality introduced by this branch be gated behind a config?
We don't have a strict definition of when configs should be used, but you can start with
Why SHOULDN'T this be a config?
Are tests written for everything that can be tested?
If you're not sure if something CAN be tested, start a discussion. Some contributors may not be capable of writing tests - we should guide them in #expansion-tests to do so.
If any new tests are KNOWN_FAILING, issues should be opened describing each of the KNOWN_FAILING tests and our understanding of why they fail.
Does the branch meet our config philosophy?
Does the branch meet our saves philosophy?
Does the submitted code follow the styleguide?
This applies to code that comes from other branches or games.
Is the pull request appropriately labeled?
Without labels, the CHANGELOG will not be properly formatted. For specifically the bugfix label, an additional label, detailing what area the bug exists in is required.
Is pokeemerald-expansion free from a merge freeze?
Our release schedule prevents us from merging Big Features and non-bugfixes within certain dates close to a release. Please use /release in the RHH Discord to clarify when these are occuring.
Merging
When a feature has passed all of the items on the checklist, it is ready to be merged. From GitHub's interface, there are three different options for merging:
Squash and merge
This should be used for all PRs except when merging from either:
- a publicly available feature branch from by the community OR
upcoming,masterorpret/pokeemerald.
Create a merge commit
Use the "Create a merge commit" to preserve history if:
- The branch is a publicly available feature branch from the community
- It's a upstream
pretmerge - It's a
mastertoupcomingmerge - It's a Release merge
Rebase and merge
We do not use this ever.