| Jun | JUL | Aug |
| 10 | ||
| 2020 | 2021 | 2022 |
COLLECTED BY
Collection: github.com
a9c31d7
.github/settings.yml file contained in the admin repo in the organization. The admin repo should be a restricted repository and contains the settings for all the repos within the organization.
(二)It manages the settings for all the repositories in the organization. Repositories could be explicitly defined in the settings config, but the app also manages any repo that is created in the organization.
(三)It will allow you to set branch protections on the default branch no matter what it is called by calling it defaultin.github/settings.yml.
admin repo within your organization (the repository must be called admin).
.github/settings.yml file in the admin repository. Changes to this file on the default branch will be synced to all the repos in the Org.
(二)The repositories section in the settings file contains repositories that need to be configured explicitly. If a repository in this section is not present, it would be created according to the configuration. Typical use cases are to configure repo specific items like topics, issues, pages, etc.
(三)The labels section contains that labels that need to be created for all the repositories in the org
(四)The collaborators section contains the list of collaborators that need to be added to all the repositories in the org. It is possible to provide an includeorexclude settings to restrict the collaborator to a list of repos or exclude a set of repos for a collaborator.
(五)The teams section contains the list of teams that need to be added to all the repositories in the org.
(六)The branchessection contains the list of branch protections that need to be applied to all the repos in the org.
(七)If the name of the branch is default in the settings, it is applied to the default branch of the repo.
.github/settings.yml the application can be bootstrapped with global settings.
(二)The global settings are configured in deployment-settings.yml that is in the directory from where the GitHub app is running.
(三)Currently the only setting that is possible are restrictedRepos: [... ] which allows you to configure a list of repos within your org that are excluded from the settings. If the deployment-settings.yml is not present, the following repos are added by default to the restrictedrepos list: 'admin', '.github', 'safe-settings'
# These settings are synced by https://github.com/github/safe-settings # The `repositories` section contains repositories that need to be configured explicitly # # The `labels` section repositories: # If the repository is not listed in the settings.yml, it will be created and synced. # See https://developer.github.com/v3/repos/#edit for all available settings for a repository - name: new-repo # The Organization the repo belongs to org: github # A short description of the repository that will show up on GitHub description: description of the repo # A URL with more information about the repository homepage: https://example.github.io/ # Keep this as true for most cases # A lot of the policies below cannot be implemented on bare repos auto_init: true # A comma-separated list of topics to set on the repository topics: github, probot, new-topic, another-topic, topic-12 # Either `true` to make the repository private, or `false` to make it public. private: false # Either `true` to enable issues for this repository, `false` to disable them. has_issues: true # Either `true` to enable projects for this repository, or `false` to disable them. # If projects are disabled for the organization, passing `true` will cause an API error. has_projects: true # Either `true` to enable the wiki for this repository, `false` to disable it. has_wiki: true # Either `true` to enable downloads for this repository, `false` to disable them. has_downloads: true # Updates the default branch for this repository. default_branch: main-enterprise # Either `true` to allow squash-merging pull requests, or `false` to prevent # squash-merging. allow_squash_merge: true # Either `true` to allow merging pull requests with a merge commit, or `false` # to prevent merging pull requests with merge commits. allow_merge_commit: true # Either `true` to allow rebase-merging pull requests, or `false` to prevent # rebase-merging. allow_rebase_merge: true # This is another repo - name: another-repo # Keep this as true as branch protections will not be applied otherwise auto_init: true org: github # A short description of the repository that will show up on GitHub description: description of another repo # The following attributes are applied to any repo within the org # So if a repo is not listed above is created or edited # The app will apply the following settings to it labels: # Labels: define labels for Issues and Pull Requests - name: bug color: CC0000 description: An issue with the system - name: feature # If including a `#`, make sure to wrap it with quotes! color: '#336699' description: New functionality. - name: first-timers-only # include the old name to rename an existing label oldname: Help Wanted color: '#326699' - name: new-label # include the old name to rename an existing label oldname: Help Wanted color: '#326699' collaborators: # Collaborators: give specific users access to any repository. # See https://developer.github.com/v3/repos/collaborators/#add-user-as-a-collaborator for available options - username: regpaco permission: push # The permission to grant the collaborator. Can be one of: # * `pull` - can pull, but not push to or administer this repository. # * `push` - can pull and push, but not administer this repository. # * `admin` - can pull, push and administer this repository. - username: beetlejuice permission: pull exclude: - actions-demo # You can exclude a list of repos for this collaborator and all repos except these repos would have this collaborator - username: thor permission: push include: - actions-demo - another-repo # You can include a list of repos for this collaborator and only those repos would have this collaborator # See https://developer.github.com/v3/teams/#add-or-update-team-repository for available options teams: - name: core # The permission to grant the team. Can be one of: # * `pull` - can pull, but not push to or administer this repository. # * `push` - can pull and push, but not administer this repository. # * `admin` - can pull, push and administer this repository. permission: admin - name: docss permission: push - name: docs permission: pull branches: # If the name of the branch is default, it will create a branch protection for the default branch in the repo - name: default # https://developer.github.com/v3/repos/branches/#update-branch-protection # Branch Protection settings. Set to null to disable protection: # Required. Require at least one approving review on a pull request, before merging. Set to null to disable. required_pull_request_reviews: # The number of approvals required. (1-6) required_approving_review_count: 1 # Dismiss approved reviews automatically when a new commit is pushed. dismiss_stale_reviews: true # Blocks merge until code owners have reviewed. require_code_owner_reviews: true # 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. dismissal_restrictions: users: [] teams: [] # Required. Require status checks to pass before merging. Set to null to disable required_status_checks: # Required. Require branches to be up to date before merging. strict: true # Required. The list of status checks to require in order to merge into this branch contexts: [] # Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable. enforce_admins: true # Required. Restrict who can push to this branch. Team and user restrictions are only available for organization-owned repositories. Set to null to disable. restrictions: apps: [] users: [] teams: []
#, e.g. color: '#F341B2'. Make sure to wrap it with quotes!
(二)Each top-level element under branch protection must be filled (eg: required_pull_request_reviews, required_status_checks, enforce_admins and restrictions). If you don't want to use one of them you must set it to null (see comments in the example above). Otherwise, none of the settings will be applied.
.github/settings.yml in the admin repo. This means with the 'safe-settings' probot you cannot inherit settings from another repo, nor can you override the settings.
write permissions on a repo to override the settings. Which means anyone with push permissions cannot elevate themselves to the admin role; only users with write permissions on the admin repo could make changes to the permissions.
Within the admin repo, you can also increase the oversight by utilizing the GitHub CodeOwners feature to set one or more administrative users as the code owner of the .github/settings.yml file, and turn on "require code owner review" for the master branch. This does have the side effect of requiring code owner review for the entire branch, but helps preserve permission levels.
safe-settings is licensed under the ISC license
safe-settings uses 3rd party libraries, each with their own license. These are found here.