|
| 1 | +--- |
| 2 | +# These settings are synced to GitHub by https://probot.github.io/apps/settings/ |
| 3 | + |
| 4 | +repository: |
| 5 | + # See https://developer.github.com/v3/repos/#edit for all available settings. |
| 6 | + |
| 7 | + # The name of the repository. Changing this will rename the repository |
| 8 | + name: repo-template |
| 9 | + |
| 10 | + # A short description of the repository that will show up on GitHub |
| 11 | + description: Agntcy Project Repo Template |
| 12 | + |
| 13 | + # A URL with more information about the repository |
| 14 | + homepage: https://www.example.com |
| 15 | + |
| 16 | + # A comma-separated list of topics to set on the repository |
| 17 | + topics: github, probot |
| 18 | + |
| 19 | + # Either `true` to make the repository private, or `false` to make it public. |
| 20 | + private: true |
| 21 | + |
| 22 | + # Either `true` to enable issues for this repository, `false` to disable them. |
| 23 | + has_issues: true |
| 24 | + |
| 25 | + # Either `true` to enable projects for this repository, or `false` to disable them. |
| 26 | + # If projects are disabled for the organization, passing `true` will cause an API error. |
| 27 | + has_projects: true |
| 28 | + |
| 29 | + # Either `true` to enable the wiki for this repository, `false` to disable it. |
| 30 | + has_wiki: false |
| 31 | + |
| 32 | + # Either `true` to enable downloads for this repository, `false` to disable them. |
| 33 | + has_downloads: true |
| 34 | + |
| 35 | + # Updates the default branch for this repository. |
| 36 | + default_branch: main |
| 37 | + |
| 38 | + # Either `true` to allow squash-merging pull requests, or `false` to prevent |
| 39 | + # squash-merging. |
| 40 | + allow_squash_merge: true |
| 41 | + |
| 42 | + # Either `true` to allow merging pull requests with a merge commit, or `false` |
| 43 | + # to prevent merging pull requests with merge commits. |
| 44 | + allow_merge_commit: true |
| 45 | + |
| 46 | + # Either `true` to allow rebase-merging pull requests, or `false` to prevent |
| 47 | + # rebase-merging. |
| 48 | + allow_rebase_merge: true |
| 49 | + |
| 50 | + # Either `true` to enable automatic deletion of branches on merge, or `false` to disable |
| 51 | + delete_branch_on_merge: true |
| 52 | + |
| 53 | + # Either `true` to enable automated security fixes, or `false` to disable |
| 54 | + # automated security fixes. |
| 55 | + enable_automated_security_fixes: true |
| 56 | + |
| 57 | + # Either `true` to enable vulnerability alerts, or `false` to disable |
| 58 | + # vulnerability alerts. |
| 59 | + enable_vulnerability_alerts: true |
| 60 | + |
| 61 | +# TODO: Enable this section once GitHub teams have been created & granted access to this repository |
| 62 | +# See https://developer.github.com/v3/teams/#add-or-update-team-repository for options |
| 63 | +# teams: |
| 64 | +# # The permission to grant the team. Can be one of: |
| 65 | +# # * `pull` - can pull, but not push to or administer this repository. |
| 66 | +# # * `push` - can pull and push, but not administer this repository. |
| 67 | +# # * `admin` - can pull, push and administer this repository. |
| 68 | +# # * `maintain` - Recommended for project managers who need to manage the |
| 69 | +# # repository without access to sensitive or destructive actions. |
| 70 | +# # * `triage` - Recommended for contributors who need to proactively manage |
| 71 | +# # issues and pull requests without write access. |
| 72 | +# - name: <project-name-admins> |
| 73 | +# permission: admin |
| 74 | +# - name: <project-name-maintainers> |
| 75 | +# permission: maintain |
| 76 | +# - name: <project-name> |
| 77 | +# permission: triage |
| 78 | + |
| 79 | +# TODO: Enable this section once repository has been created & no further modifications are needed |
| 80 | +# branches: |
| 81 | +# - name: main |
| 82 | +# # https://developer.github.com/v3/repos/branches/#update-branch-protection |
| 83 | +# # Branch Protection settings. Set to null to disable |
| 84 | +# protection: |
| 85 | +# # Required. Require at least one approving review on a pull request, |
| 86 | +# # before merging. Set to null to disable. |
| 87 | +# required_pull_request_reviews: |
| 88 | +# # The number of approvals required. (1-6) |
| 89 | +# required_approving_review_count: 1 |
| 90 | +# # Dismiss approved reviews automatically when a new commit is pushed. |
| 91 | +# dismiss_stale_reviews: true |
| 92 | +# # Blocks merge until code owners have reviewed. |
| 93 | +# require_code_owner_reviews: true |
| 94 | +# # Specify which users and teams can dismiss pull request reviews. Pass |
| 95 | +# # an empty dismissal_restrictions object to disable. User and team |
| 96 | +# # dismissal_restrictions are only available for organization-owned |
| 97 | +# # repositories. Omit this parameter for personal repositories. |
| 98 | +# dismissal_restrictions: |
| 99 | +# users: [] |
| 100 | +# teams: [] |
| 101 | +# # Required. Require status checks to pass before merging. Set to null to disable |
| 102 | +# required_status_checks: |
| 103 | +# # Required. Require branches to be up to date before merging. |
| 104 | +# strict: true |
| 105 | +# # Required. The list of required status checks in order to merge into this branch |
| 106 | +# contexts: [] |
| 107 | +# # Required. Enforce all configured restrictions for administrators. Set to |
| 108 | +# # true to enforce required status checks for repository administrators. |
| 109 | +# # Set to null to disable. |
| 110 | +# enforce_admins: true |
| 111 | +# # Prevent merge commits from being pushed to matching branches |
| 112 | +# required_linear_history: true |
| 113 | +# # Required. Restrict who can push to this branch. Team and user |
| 114 | +# # restrictions are only available for organization-owned repositories. Set |
| 115 | +# # to null to disable. |
| 116 | +# restrictions: |
| 117 | +# apps: [] |
| 118 | +# users: [] |
| 119 | +# teams: [] |
0 commit comments