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.
- Uncheck Require approvals.
- 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 Create.
- Once you turn on branch protection, Actions can no longer push directly to the
main
branch. Wait about 20 seconds and then go to theci
branch. GitHub Actions will automatically update to the next step on theci
branch. You'll need to follow instructions on this branch.
Get help: Post in our discussion board • Review the GitHub status page
© 2023 GitHub • Code of Conduct • MIT License