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>2022-06-02 12:09:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-02 12:09:17 +0300
commit9cd5033338348e41c06b09211161a32ed9a8b18a (patch)
tree8b7882b6b6ae2cf9fa5c2b1f65bcbedd3729cfdc /lib/gitlab/ci/pipeline
parent4ea9f70a2f4833a1063ddc173a285929d9b3b25c (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/ci/pipeline')
-rw-r--r--lib/gitlab/ci/pipeline/chain/validate/external.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/gitlab/ci/pipeline/chain/validate/external.rb b/lib/gitlab/ci/pipeline/chain/validate/external.rb
index 85bd5f0a7c1..8177502be1d 100644
--- a/lib/gitlab/ci/pipeline/chain/validate/external.rb
+++ b/lib/gitlab/ci/pipeline/chain/validate/external.rb
@@ -83,7 +83,9 @@ module Gitlab
project: {
id: project.id,
path: project.full_path,
- created_at: project.created_at&.iso8601
+ created_at: project.created_at&.iso8601,
+ shared_runners_enabled: project.shared_runners_enabled?,
+ group_runners_enabled: project.group_runners_enabled?
},
user: {
id: current_user.id,