GitHub Safe Settings
This is a modified version of Settings Probot GitHub App. This differs from the original probot settings app in several ways:
- It does not use probot-config. Instead, it reads the settings from
.github/settings.ymlfile contained in theadminrepo in the organization. Theadminrepo 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
defaultbranch no matter what it is called by calling itdefaultin.github/settings.yml.
Usage
- Install the app.
- Create an
adminrepo within your organization (the repository must be calledadmin).
Config
- Create a
.github/settings.ymlfile in theadminrepository. Changes to this file on the default branch will be synced to all the repos in the Org. - The
repositoriessection in thesettingsfile 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 liketopics,issues,pages, etc. - The
labelssection contains that labels that need to be created for all the repositories in the org - The
collaboratorssection contains the list of collaborators that need to be added to all the repositories in the org. It is possible to provide anincludeorexcludesettings to restrict the collaborator to a list of repos or exclude a set of repos for a collaborator. - The
teamssection contains the list of teams that need to be added to all the repositories in the org. - The
branchessection contains the list ofbranch protectionsthat need to be applied to all the repos in the org. - If the name of the branch is
defaultin the settings, it is applied to thedefaultbranch of the repo.
Global config
- Besides the
.github/settings.ymlthe application can be bootstrapped withglobalsettings. - The
globalsettings are configured indeployment-settings.ymlthat 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 yourorgthat are excluded from the settings. If thedeployment-settings.ymlis not present, the following repos are added by default to therestrictedrepos 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: []
Notes
- Label color can also start with
#, 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_adminsandrestrictions). If you don't want to use one of them you must set it tonull(see comments in the example above). Otherwise, none of the settings will be applied.
Inheritance (there is none)
This app DOES NOT USE probot-config. This probot will only use the .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.
Security Implications (much better)
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.
Deployment
See docs/deploy.md if you would like to run your own instance of this plugin.
License
safe-settings is licensed under the ISC license
safe-settings uses 3rd party libraries, each with their own license. These are found here.