-
How can I submit a PR? What should I follow before submitting the PR and is there anything else I should do after submitting the Pull Request? |
Beta Was this translation helpful? Give feedback.
Answered by
jpangas
Mar 8, 2023
Replies: 1 comment
-
Checklist when submitting your PR
After submitting your PR
The bugbug maintainers will check the changes, and if everything is looking good, they will approve and merge the changes to the main branch of the bugbug repository.
git checkout main git fetch upstream git merge upstream/main
git push -u origin main
For further assistance or discussions:Chat with us in the bugbug Matrix room. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jpangas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Checklist when submitting your PR
Fixes/Closes/Resolves #PRNumber
pre-commit
will run these checks. If any issues are found, the tests will fail.After submitting your PR
The bugbug maintainers will check the c…