From 1d04256e71bd87edc6a513660972f8a1fc93d426 Mon Sep 17 00:00:00 2001 From: Pavlos Tzianos Date: Tue, 30 Jan 2024 11:15:47 +0000 Subject: [PATCH] Modify repo settings to only allow rebase merging PRs (Part of #62) Signed-off-by: Pavlos Tzianos --- .github/settings.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/settings.yml b/.github/settings.yml index 667d6bd1d..4921f0d7d 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -16,7 +16,7 @@ repository: topics: 'SAST, DAST, DevSecOps, Pipelines, Tekton' # Either `true` to make the repository private, or `false` to make it public. - private: public + private: false # Either `true` to enable issues for this repository, `false` to disable them. has_issues: true @@ -36,7 +36,7 @@ repository: # Either `true` to allow squash-merging pull requests, or `false` to prevent # squash-merging. - allow_squash_merge: true + allow_squash_merge: false # Either `true` to allow merging pull requests with a merge commit, or `false` # to prevent merging pull requests with merge commits. @@ -44,7 +44,7 @@ repository: # Either `true` to allow rebase-merging pull requests, or `false` to prevent # rebase-merging. - allow_rebase_merge: false + allow_rebase_merge: true # Either `true` to enable automatic deletion of branches on merge, or `false` to disable delete_branch_on_merge: true