|
| 1 | +### |
| 2 | +# https://probot.github.io/apps/settings/ |
| 3 | +# |
| 4 | + |
| 5 | +# DO NOT MODIFY |
| 6 | +# this is a copy of https://github.com/gundalow-collection/.github/blob/master/.github/settings.yml |
| 7 | +# Work around till https://github.com/probot/settings/pull/179 is merged |
| 8 | + |
| 9 | + |
| 10 | + |
| 11 | +repository: |
| 12 | + # See https://developer.github.com/v3/repos/#edit for all available settings. |
| 13 | + has_issues: true |
| 14 | + has_wiki: false |
| 15 | + has_pages: false |
| 16 | + default_branch: master |
| 17 | + allow_squash_merge: true |
| 18 | + allow_merge_commit: false |
| 19 | + allow_rebase_merge: true |
| 20 | + |
| 21 | +# Labels: define labels for Issues and Pull Requests |
| 22 | +labels: |
| 23 | + - name: bug |
| 24 | + color: fbca04 |
| 25 | + description: This issue/PR relates to a bug. |
| 26 | + - name: feature |
| 27 | + description: This issue/PR relates to a feature request. |
| 28 | + color: 006b75 |
| 29 | + - name: migrated_from_ansible_ansible |
| 30 | + color: 5319e7 |
| 31 | + description: This issue/PR was moved from gh/ansible/ansible |
| 32 | + |
| 33 | +branches: |
| 34 | + - name: master |
| 35 | + # https://developer.github.com/v3/repos/branches/#update-branch-protection |
| 36 | + # Branch Protection settings. Set to null to disable |
| 37 | + protection: |
| 38 | + # Required. Require at least one approving review on a pull request, before merging. Set to null to disable. |
| 39 | + required_pull_request_reviews: |
| 40 | + # The number of approvals required. (1-6) |
| 41 | + required_approving_review_count: 1 |
| 42 | + # Dismiss approved reviews automatically when a new commit is pushed. |
| 43 | + dismiss_stale_reviews: true |
| 44 | + # Blocks merge until code owners have reviewed. |
| 45 | + require_code_owner_reviews: true |
| 46 | + # Specify which users and teams can dismiss pull request reviews. Pass an empty dismissal_restrictions object to disable. User and team dismissal_restrictions are only available for organization-owned repositories. Omit this parameter for personal repositories. |
| 47 | + dismissal_restrictions: |
| 48 | + users: [] |
| 49 | + teams: [] |
| 50 | + # Required. Require status checks to pass before merging. Set to null to disable |
| 51 | + required_status_checks: |
| 52 | + # Required. Require branches to be up to date before merging. |
| 53 | + strict: true |
| 54 | + # Required. The list of status checks to require in order to merge into this branch |
| 55 | + contexts: [] |
| 56 | + # Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable. |
| 57 | + enforce_admins: true |
| 58 | + # Required. Restrict who can push to this branch. Team and user restrictions are only available for organization-owned repositories. Set to null to disable. |
| 59 | + #restrictions: |
| 60 | + # users: [] |
| 61 | + # teams: [] |
0 commit comments