Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions safe-settings/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,15 @@ repository:
# Currently only on complyctl; this enables it org-wide.
delete_branch_on_merge: true

# Merge strategies — all enabled org-wide, matching current state.
# Merge strategies.
# Squash and merge commit are enabled. Rebase merge is disabled
# because it rewrites commit SHAs (breaking Signed-off-by
# verification) and does not create a merge commit linking the
# PR to the branch history, making git log and git bisect
# harder to navigate. See STYLE_GUIDE.md § Pull Requests.
allow_squash_merge: true
allow_merge_commit: true
allow_rebase_merge: true
allow_rebase_merge: false

# Allow the "Update branch" button on PRs.
# Currently only on complyctl; this enables it org-wide.
Expand Down
Loading