Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-17 19:05:49 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-17 19:05:49 +0300
commit43a25d93ebdabea52f99b05e15b06250cd8f07d7 (patch)
treedceebdc68925362117480a5d672bcff122fb625b /.lefthook/pre-push
parent20c84b99005abd1c82101dfeff264ac50d2df211 (diff)
Add latest changes from gitlab-org/gitlab@16-0-stable-eev16.0.0-rc42
Diffstat (limited to '.lefthook/pre-push')
-rwxr-xr-x.lefthook/pre-push/security_harness17
1 files changed, 17 insertions, 0 deletions
diff --git a/.lefthook/pre-push/security_harness b/.lefthook/pre-push/security_harness
new file mode 100755
index 00000000000..89a6d4a608d
--- /dev/null
+++ b/.lefthook/pre-push/security_harness
@@ -0,0 +1,17 @@
+#!/usr/bin/env bash
+
+set -e
+shopt -s nocasematch # Enable case-insensitive matching
+
+local_branch="$(git rev-parse --abbrev-ref HEAD)"
+security_branch_regex="^security.+"
+url="$2"
+
+if [[ $local_branch =~ $security_branch_regex ]] && [[ "$url" != *"gitlab-org/security/"* ]]
+then
+ echo "Pushing security branches to remotes other than gitlab.com/gitlab-org/security has been disabled!"
+ echo "Please read https://gitlab.com/gitlab-org/release/docs/blob/master/general/security/developer.md#do-not-push-to-gitlab-orggitlab"
+ echo
+
+ exit 1
+fi