-
Notifications
You must be signed in to change notification settings - Fork 0
Contribution Guide
Akumetsu edited this page Sep 23, 2022
·
2 revisions
To ensure that we are able to collaborate effectively, please follow the instructions in this guide to collaborate effectively.
If taking an issue that is not of type Bug nor Documentation, please ensure that:
- The issue is in the
ToDoColumn of the project board - You assign the issue to yourself, ensuring that no one else starts working on it
- You move the issue to the
InProgressColumn of the project board
When working on a feature, please create a branch for that feature or issue from the staging branch.
When finishing work, please create a pull request back to the staging branch and tag @michmich112 for review and merging.
flowchart TD
subgraph Staging
direction TB
Commit1 --> Commit2
Commit2 -.-> Commit3
end
subgraph Feature
direction TB
FeatureCommit1 --> FeatureCommit2
end
Commit2 --> FeatureCommit1
FeatureCommit2 --> Commit3