Create workflows that enable you to use Continuous Integration (CI) for your projects.
Great job uploading test reports! 🥳
Take a look at the merge box, you'll notice you can merge this even though the review process hasn't been met.
Protected branches ensure that collaborators on your repository cannot make irrevocable changes to branches. Enabling protected branches also allows you to enable other optional checks and requirements, like required status checks and required reviews.
- Go to Branches settings. You can navigate to that page manually by selecting the right-most tab in the top of the repository called Settings and then clicking Branches.
- Click Add branch protection rule under "Branch protection rules".
- Type
main
in Branch name pattern. - Check Require a pull request before merging.
- Check Require status checks to pass before merging.
- Check all build and test jobs that you'd like to see in the newly visible gray box.
- Click Save changes.
- Once you turn on branch protection, Actions can no longer push directly to
main
. You'll need to open the next step on your own.
Get help: Post in our discussion board • Review the GitHub status page
© 2023 GitHub • Code of Conduct • MIT License