Skip to content

Commit

Permalink
Fix branch protection rules (#58)
Browse files Browse the repository at this point in the history
 Fix branch protection rules
  • Loading branch information
dwijnand committed Oct 18, 2019
2 parents 56c8af1 + c431d18 commit 2183783
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,16 @@ teams:
branches:
- name: "[0-9].*.x"
protection:
# We don't require reviews for sample applications because they are mainly
# updated by template-control, which is an automated process
required_pull_request_reviews: null
# Required. Require status checks to pass before merging. Set to null to disable
required_pull_request_reviews:
required_approving_review_count: 1
dismiss_stale_reviews: true
# Require status checks to pass before merging
required_status_checks:
# Required. The list of status checks to require in order to merge into this branch
# The list of status checks to require in order to merge into this branch
contexts: ["Travis CI - Pull Request", "typesafe-cla-validator"]
# all settins in branches.protection must be set, if not used we must set to null
restrictions: null
enforce_admins: null

# Labels: tailored list of labels to be used by sample applications
labels:
Expand Down

0 comments on commit 2183783

Please sign in to comment.