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>2021-11-17 06:09:55 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-17 06:09:55 +0300
commitf8edb3a740b9ba434489a50b69c2e765cecb24b0 (patch)
treef090471bf9fd3859b517b8fa66c926ce9b54f397 /scripts
parent049fd8333a1c87144f43680f69f472de89bb7743 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/changed-feature-flags2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/changed-feature-flags b/scripts/changed-feature-flags
index ec082b05394..3a4f18bd78f 100755
--- a/scripts/changed-feature-flags
+++ b/scripts/changed-feature-flags
@@ -19,7 +19,7 @@ class GetFeatureFlagsFromFiles
def extracted_flags
files.each_with_object([]) do |file_path, all|
- next unless file_path =~ %r{/feature_flags/development/.*\.yml}
+ next unless file_path =~ %r{/feature_flags/(development|ops)/.*\.yml}
next unless File.exist?(file_path)
ff_yaml = YAML.safe_load(File.read(file_path))