- Notifications
You must be signed in to change notification settings - Fork196
License
github/safe-settings
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Policy-as-Code for GitHub Organizations
Centrally manage and enforce repository settings, branch protections, teams, and more across your entire GitHub organization.
Safe-settings – an app to manage policy-as-code and apply repository settings across an organization.
In
safe-settings, all the settings are stored centrally in anadminrepo within the organization. Unlike theGitHub Repository Settings App, the settings files cannot be in individual repositories.It is possible specify a custom repo instead of the
adminrepo withADMIN_REPO. SeeEnvironment variables for more details.Thesettings in thedefault branch are applied. If the settings are changed on a non-default branch and a PR is created to merge the changes, the app runs in a
dry-runmode to evaluate and validate the changes. Checks pass or fail based on thedry-runresults.In
safe-settingsthe settings can have 2 types of targets:org- These settings are applied to the organization.Org-targeted settings are defined in.github/settings.yml. Currently, onlyrulesetsare supported asorg-targeted settings.repo- These settings are applied to repositories.
For the
repo-targeted settings, there can be 3 levels at which the settings are managed:Org-level settings are defined in.github/settings.ymlIt is possible to override this behavior and specify a different filename for the
settings.ymlfile withSETTINGS_FILE_PATH. Similarly, the.githubdirectory can be overridden withCONFIG_PATH. SeeEnvironment variables for more details.Suborglevel settings. Asuborgis an arbitrary collection of repos belonging to projects, business units, or teams. Thesuborgsettings reside in a yaml file for eachsuborgin the.github/suborgsfolder.In
safe-settings,suborgscould be groups of repos based onrepo names, orteamswhich the repos have collaborators from, orcustom property valuesset for the reposRepolevel settings. They reside in a repo specific yaml in.github/reposfolder
It is recommended to break the settings into
org-level,suborg-level, andrepo-level units. This will allow different teams to define and manage policies for their specific projects or business units. WithCODEOWNERS, this will allow different people to be responsible for approving changes in different projects.
Note
Thesuborg andrepo level settings directory structure cannot be customized.
Choose your preferred deployment method:
- 🌟 AWS Lambda (: Use theSafeSettings-Template for production-ready deployment with Docker containers, GitHub Actions CI/CD, and comprehensive testing
- 🐳 Docker: Deploy using Docker containers locally or in your infrastructure
- ☁️ Cloud Platforms: Deploy to Heroku, Glitch, or Kubernetes
👉View all deployment options →
Create anadmin repository in your organization to store all configuration files:
# Create admin repo in your organizationgh repo create your-org/admin --privateSet up your configuration files in the admin repository:
admin/├── .github/│ ├── settings.yml # Organization-wide settings│ ├── suborgs/ # Sub-organization settings│ │ ├── frontend-team.yml│ │ └── backend-team.yml│ └── repos/ # Repository-specific settings│ ├── api-service.yml│ └── web-app.ymlInstall the Safe-Settings GitHub App in your organization with the required permissions.
graph TD A[Organization Settings<br/>.github/settings.yml] --> B[Sub-Organization Settings<br/>.github/suborgs/*.yml] B --> C[Repository Settings<br/>.github/repos/*.yml] style A fill:#e1f5fe,stroke:#01579b,stroke-width:2px,color:#000 style B fill:#f3e5f5,stroke:#4a148c,stroke-width:2px,color:#000 style C fill:#e8f5e8,stroke:#1b5e20,stroke-width:2px,color:#000Precedence Order: Repository > Sub-Organization > Organization
sequenceDiagram participant GH as GitHub participant SS as Safe-Settings participant AR as Admin Repo participant TR as Target Repos Note over GH,TR: Webhook Event Processing GH->>+SS: Webhook Event<br/>(push, repo created, etc.) SS->>SS: Validate Event Source SS->>+AR: Fetch Configuration Files<br/>(.github/settings.yml, suborgs/, repos/) AR-->>-SS: Return Config Files SS->>SS: Merge Configurations<br/>(Org → Suborg → Repo) SS->>SS: Compare with Current<br/>GitHub Settings alt Configuration Changes Detected SS->>+TR: Apply Settings<br/>(Branch Protection, Teams, etc.) TR-->>-SS: Confirm Changes SS->>GH: Create Check Run<br/>(Success/Failure) else No Changes Needed SS->>GH: Create Check Run<br/>(No Changes) end SS-->>-GH: HTTP 200 Response Note over GH,TR: Pull Request Validation (Dry-Run Mode) GH->>+SS: PR Event<br/>(opened, synchronize) SS->>+AR: Fetch PR Changes<br/>(Modified Config Files) AR-->>-SS: Return Changed Configs SS->>SS: Validate Changes<br/>(Dry-Run Mode) SS->>SS: Run Custom Validators<br/>(if configured) alt Validation Passes SS->>GH: ✅ Check Success<br/>+ PR Comment (optional) else Validation Fails SS->>GH: ❌ Check Failure<br/>+ Error Details end SS-->>-GH: HTTP 200 Response Note over GH,TR: Scheduled Sync (Drift Prevention) SS->>SS: Cron Trigger<br/>(if configured) SS->>+AR: Fetch All Configurations AR-->>-SS: Return All Configs SS->>+TR: Sync All Repositories<br/>(Prevent Drift) TR-->>-SS: Confirm Sync SS->>GH: Create Check Run<br/>(Sync Results)Safe-settings is designed to run as a service listening for webhook events or as a scheduled job running on some regular cadence. It can also be triggered through GitHub Actions. (See theHow to use section for details on deploying and configuring.)
The App listens to the following webhook events:
push: If the settings are created or modified, that is, if push happens in the
defaultbranch of theadminrepo and the file added or changed is.github/settings.ymlor.github/repos/*.ymlor.github/suborgs/*.yml, then the settings would be applied either globally to all the repos, or specific repos. For each repo, the settings that are actually applied depend on the default settings for the org, overlaid with settings for the suborg that the repo belongs to, overlaid with the settings for that specific repo.repository.created: If a repository is created in the org, the settings for the repo - the default settings for the org, overlaid with settings for the suborg that the repo belongs to, overlaid with the settings for that specific repo - is applied.
branch_protection_rule: If a branch protection rule is modified or deleted,
safe-settingswillsyncthe settings to prevent any unauthorized changes.repository.edited: For e.g. If the default branch is renamed, or if topics change,
safe-settingswillsyncthe settings, to prevent any unauthorized changes.repository.renamed: If a repository is renamed, the default behavior is safe-settings will ignore this (for backward-compatibility). If
BLOCK_REPO_RENAME_BY_HUMANenv variable is set to true,safe-settingswill revert the repo to the previous name unless it is renamed using abot. If it is renamed using abot, it will try to copy the existing<old-repo>.ymlto<new-repo>.ymlso that the repo config yml stays consistent. If a <new-repo.yml> file already exists, it doesn't create a new one.pull_request.opened,pull_request.reopened,check_suite.requested: If the settings are changed, but it is not in the
defaultbranch, and there is an existing PR, the code will validate the settings changes by running safe-settings innopmode and update the PR with thedry-runstatus.repository_ruleset: If the
rulesetsettings are modified in the UI manually,safe-settingswillsyncthe settings to prevent any unauthorized changes.member_change_events: If a member is added or removed from a repository,
safe-settingswillsyncthe settings to prevent any unauthorized changes.member',team.added_to_repository,team.removed_from_repository,team.edited:
safe-settingswillsyncthe settings to prevent any unauthorized changes.custom_property_values: If new repository properties are set for a repository,
safe-settingswill run to so that if a sub-org config is defined by that property, it will be applied for the repo
If you rename a<repo.yml> that corresponds to a repo, safe-settings will rename the repo to the new name. This behavior will take effect whether the env variableBLOCK_REPO_RENAME_BY_HUMAN is set or not.
To restrict which repositoriessafe-settings can manage, create adeployment-settings.yml file. This file controls the app's scope through therestrictedRepos configuration:
# Using include/excluderestrictedRepos:include: -api -core-*# Matches `core-api`, `core-service`, etc.exclude: -admin -.github -safe-settings -test-*# Matches `test-repo`, etc.# Or using simple array syntax for includesrestrictedRepos: -admin -.github# ...
Note
Pattern matching uses glob expressions, e.g use * for wildcards.
When usinginclude andexclude:
- If
includeis specified, willonly run on repositories that match pattern(s) - If
excludeis specified, will run on all repositoriesexcept those matching pattern(s) - If both are specified, will run only on included repositories that are'nt excluded
By default, if no configuration file is provided,safe-settings will excludes these repos:admin,.github andsafe-settings.
See ourdeployment-settings.yml sample.
Admins setting upsafe-settings can include custom rules that would be validated before applying a setting or overriding a broader scoped setting.
The code has to returntrue if validation is successful, orfalse if it isn't.
If the validation fails, theerror attribute specified would be used to create the error message in the logs or in thePR checks.
The first use case is where a custom rule has to be applied for a setting on its own. For e.g. No collaborator should be givenadmin permissions.
For this type of validation, admins can provide custom code asconfigvalidators which validates the setting by itself.
For e.g. for the case above, it would look like:
configvalidators: -plugin:collaboratorserror:| `Admin role cannot be assigned to collaborators`script:| console.log(`baseConfig ${JSON.stringify(baseconfig)}`) return baseconfig.permission != 'admin'
For convenience this script has access to a variable,baseconfig, that contains the setting that is be applied.
The second use case is where custom rule has to be applied when a setting in the org or suborg level is being overridden. Such as, when default branch protection is being overridden.
For this type of validation, admins can provide custom code asoverridevalidators. The script can access two variables,baseconfig andoverrideconfig which represent the base setting and the setting that is overriding it.
A sample would look like:
overridevalidators: -plugin:brancheserror:| `Branch protection required_approving_review_count cannot be overidden to a lower value`script:| console.log(`baseConfig ${JSON.stringify(baseconfig)}`) console.log(`overrideConfig ${JSON.stringify(overrideconfig)}`) if (baseconfig.protection.required_pull_request_reviews.required_approving_review_count && overrideconfig.protection.required_pull_request_reviews.required_approving_review_count ) { return overrideconfig.protection.required_pull_request_reviews.required_approving_review_count >= baseconfig.protection.required_pull_request_reviews.required_approving_review_count } returntrue
A sample ofdeployment-settings file is foundhere.
For branch protection rules and rulesets, you can allow for status checks to be defined outside of safe-settings together with your usual safe settings.
This can be defined at the org, sub-org, and repo level.
To configure this for branch protection rules, specify{{EXTERNALLY_DEFINED}} under thecontexts keyword:
branches: -name:mainprotection:...required_status_checks:contexts: -"{{EXTERNALLY_DEFINED}}"
For rulesets, specify{{EXTERNALLY_DEFINED}} under therequired_status_checks keyword:
rulesets: -name:Status Checks...rules: -type:required_status_checksparameters:required_status_checks: -context:"{{EXTERNALLY_DEFINED}}"
Notes:
- For the same branch that is covered by multi-level branch protection rules, contexts defined at the org level are merged into the sub-org and repo level contexts, while contexts defined at the sub-org level are merged into the repo level contexts.
- Rules from the sub-org level are merged into the repo level when their ruleset share the same name. Becareful not to define the same rule type in both levels as it will be rejected by GitHub.
- When
{{EXTERNALLY_DEFINED}}is defined for a new branch protection rule or ruleset configuration, they will be deployed with no status checks. - When an existing branch protection rule or ruleset configuration is amended with
{{EXTERNALLY_DEFINED}}, the status checks in the existing rules in GitHub will remain as is.
⚠️ Warning:When{{EXTERNALLY_DEFINED}}is removed from an existing branch protection rule or ruleset configuration, the status checks in the existing rules in GitHub will revert to the checks that are defined in safe-settings. From this point onwards, all status checks configured through the GitHub UI will be reverted back to the safe-settings configuration.
Refer toStatus checks.
When there are 1000s of repos to be managed -- and there is a global settings change -- safe-settings will have to work efficiently and only make the necessary API calls.
The app also has to complete the work within an hour: the lifetime of the GitHub app token.
To address these constraints the following design decisions have been implemented:
Probotautomatically handlesrateandabuselimits.- Instead of loading all the repo contents from
.github/repos/*, it will selectively load the specific repo file based on whichreposettings has changed, or a subset of the repo files associated withsuborgsettings that has changed. The only time all the repo files will be loaded is if there is aglobalsettings file change. - The PR check will only provide a summary of errors and changes. (Providing the details of changes for 1000s of repos will error out.)
- To ensure it handles updates to GitHub intelligently, it will compare the changes with the settings in GitHub, and will call the API only if there are
realchanges.
To determine if there arereal changes, the code will generate a detailed list ofadditions,modifications, anddeletions compared to the settings in GitHub:
For e.g:
If the settings is:
{"branches": [ {"name":"master","protection": {"required_pull_request_reviews": {"required_approving_review_count":2,"dismiss_stale_reviews":false,"require_code_owner_reviews":true,"dismissal_restrictions": {} },"required_status_checks": {"strict":true,"contexts": [] },"enforce_admins":false } } ]}and the settings in GitHub is:
{"branches": [ {"name":"master","protection": {"url":"https://api.github.com/repos/decyjphr-org/test/branches/develop/protection","required_status_checks": {"url":"https://api.github.com/repos/decyjphr-org/test/branches/develop/protection/required_status_checks","strict":true,"contexts": [],"contexts_url":"https://api.github.com/repos/decyjphr-org/test/branches/develop/protection/required_status_checks/contexts","checks": [] },"restrictions": {"url":"https://api.github.com/repos/decyjphr-org/test/branches/develop/protection/restrictions","users_url":"https://api.github.com/repos/decyjphr-org/test/branches/develop/protection/restrictions/users","teams_url":"https://api.github.com/repos/decyjphr-org/test/branches/develop/protection/restrictions/teams","apps_url":"https://api.github.com/repos/decyjphr-org/test/branches/develop/protection/restrictions/apps","users": [],"teams": [],"apps": [] },"required_pull_request_reviews": {"url":"https://api.github.com/repos/decyjphr-org/test/branches/develop/protection/required_pull_request_reviews","dismiss_stale_reviews":true,"require_code_owner_reviews":true,"required_approving_review_count":2,"dismissal_restrictions": {"url":"https://api.github.com/repos/decyjphr-org/test/branches/develop/protection/dismissal_restrictions","users_url":"https://api.github.com/repos/decyjphr-org/test/branches/develop/protection/dismissal_restrictions/users","teams_url":"https://api.github.com/repos/decyjphr-org/test/branches/develop/protection/dismissal_restrictions/teams","users": [],"teams": [] } },"required_signatures":false,"enforce_admins":false,"required_linear_history":false,"allow_force_pushes": {"enabled":false },"allow_deletions":false,"required_conversation_resolution":false } } ]}the results of comparison would be:
{"additions": {},"modifications": {"branches": [ {"protection": {"required_pull_request_reviews": {"dismiss_stale_reviews":false } },"name":"master" } ] },"deletions": {},"hasChanges":true }The App can be configured to apply the settings on a schedule. This could be a way to address configuration drift since webhooks are not always guaranteed to be delivered.
To periodically converge the settings to the configuration, set theCRON environment variable. SeeEnvironment variables for more details.
Safe-settings explicitly looks in theadmin repo in the organization for the settings files. Theadmin repo could be a restricted repository withbranch protections andCODEOWNERS
In that set up, when changes happen to the settings files and there is a PR for merging the changes back to thedefault branch in theadmin repo,safe-settings will runchecks – which will run innop mode and produce a report of the changes that would happen, including the API calls and the payload.
For e.g. If we haveoverride validators that will fail iforg-level branch protections are overridden at the repo or suborg level with a lesser number of required approvers, here is an screenshot of what users will see in the PR.
Note
If you don't want the PR message to have these details, they can be turned off withCREATE_PR_COMMENT. SeeEnvironment variables for more details.
Here is a screenshot of what the users will see in thecheckrun page:
The app creates aCheck at the end of its processing to indicate if there were any errors. TheCheck is calledsafe-settings and corresponds to the latest commit on thedefault branch of theadmin repo.
Here is an example of acheckrun result:
And thecheckrun page will look like this:
The settings files can be used to set the policies at theorg,suborg orrepo level.
The following can be configured:
Repository settings- home page, url, visibility, has_issues, has_projects, wikis, etc.Default branch- naming and renamingTopicsCustom propertiesTeams and permissionsCollaborators and permissionsIssue labelsMilestonesBranch protections- if the name of the branch isdefaultin the settings, it is applied to thedefaultbranch of the repo.AutolinksRepository name validationusing regex patternRulesetsEnvironments- wait timer, required reviewers, prevent self review, protected branches deployment branch policy, custom deployment branch policy, variables, deployment protection rules
Seedocs/sample-settings/settings.yml for a sample settings file.
Note
When usingcollaborators,teams orlabels, you can control which repositories they apply to usinginclude andexclude:
- If
includeis specified, settings willonly apply to repositories that match those patterns - If
excludeis specified, settings will apply to all repositoriesexcept those matching the patterns - If both are specified,
excludetakes precedence overincludebutincludepatterns will still be respected
Pattern matching uses glob expressions, e.g use * for wildcards. For example:
teams: -name:Myteam-adminspermission:admin -name:Myteam-developerspermission:push -name:Other-teampermission:pushinclude: -'*-config'
In addition to the values in the file above, the settings file can have some additional values:
force_create: This is set in the repo-level settings to force create the repo if the repo does not exist.template: This is set in the repo-level settings, and is used with theforce_createflag to use a specific repo template when creating the reposuborgrepos: This is set in the suborg-level settings to define an array of repos. This field can also take aglobpattern to allow wild-card expression to specify repos in a suborg. For e.g.test*would includetest,test1,testing, etc.- The
suborgteamssection contains a list of teams, and all the repos belonging to the teams would be part of thesuborg
You can pass environment variables; the easiest way to do it is via a.env file.
CRONyou can pass a cron input to runsafe-settingsat a regular schedule. This is based onnode-cron. For eg.
# ┌────────────── second (optional)# │ ┌──────────── minute# │ │ ┌────────── hour# │ │ │ ┌──────── day of month# │ │ │ │ ┌────── month# │ │ │ │ │ ┌──── day of week# │ │ │ │ │ │# │ │ │ │ │ │# * * * * * *CRON=* * * * * # Run every minute- Logging level can be set using
LOG_LEVEL. For e.g.
LOG_LEVEL=trace- Configure the source repository using
ADMIN_REPO(default isadmin). For e.g.
ADMIN_REPO=safe-settings-config- Configure the config path using
CONFIG_PATH(default is.github). For e.g.
CONFIG_PATH=.github- Configure the settings file path using
SETTINGS_FILE_PATH(default issettings.yml). For e.g.
SETTINGS_FILE_PATH=settings.yml- Configure the deployment settings file path using
DEPLOYMENT_CONFIG_FILE(default isdeployment-settings.yml). For e.g.
DEPLOYMENT_CONFIG_FILE=deployment-settings.yml- Enable the pull request comment using
ENABLE_PR_COMMENT(default istrue). For e.g.
ENABLE_PR_COMMENT=true- Block repository renaming manually using
BLOCK_REPO_RENAME_BY_HUMAN(default isfalse). For e.g.
BLOCK_REPO_RENAME_BY_HUMAN=true- Besides the above settings files, the application can be bootstrapped with
runtimesettings. - The
runtimesettings 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'
- 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. - The precedence order is repository > suborg > org (.github/repos/.yml > .github/suborgs/.yml > .github/settings.yml
Create an
adminrepo (or an alternative of your choosing) within your organization. Remember to setADMIN_REPOif you choose something other thanadmin. SeeEnvironment variables for more details.Add the settings for the
org,suborgs, andrepos. Sample files can be foundhere.Deploy and install the app. Alternatively, theGitHub Actions Guide describes how to run
safe-settingswith GitHub Actions.
safe-settings is licensed under theISC license
safe-settings uses 3rd party libraries, each with their own license. These are foundhere.
About
Resources
License
Code of conduct
Contributing
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.



