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-04-20 14:43:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-20 14:43:17 +0300
commitdfc94207fec2d84314b1a5410cface22e8b369bd (patch)
treec54022f61ced104305889a64de080998a0dc773b /.lefthook
parentb874efeff674f6bf0355d5d242ecf81c6f7155df (diff)
Add latest changes from gitlab-org/gitlab@15-11-stable-eev15.11.0-rc42
Diffstat (limited to '.lefthook')
-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