Submitting Changes
-
Update your branch: Ensure your branch is up to date with
main/masterbefore pushing.git fetch upstream
git rebase upstream/master -
Push to your fork:
git push origin feature/my-feature -
Open a Pull Request:
- Go to the original repository.
- Click "New Pull Request".
- Select your branch.
- Fill out the template describing your changes.
-
Review Process:
- A maintainer will review your code.
- Address any comments.
- Once approved, it will be merged.
PR Checklist
- Tests passed (
npm test) - Linting passed (
npm run lint) - Documentation updated (if applicable)
- Commit messages follow Conventional Commits