Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
caa471b8
Commit
caa471b8
authored
Nov 03, 2020
by
Miguel Rincon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable ci_lint_vue feature flag by default
parent
e7e53ab3
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
3 deletions
+8
-3
app/controllers/projects/ci/lints_controller.rb
app/controllers/projects/ci/lints_controller.rb
+1
-1
app/views/projects/ci/lints/show.html.haml
app/views/projects/ci/lints/show.html.haml
+1
-1
changelogs/unreleased/249661-ci_lint_vue-default-true.yml
changelogs/unreleased/249661-ci_lint_vue-default-true.yml
+5
-0
config/feature_flags/development/ci_lint_vue.yml
config/feature_flags/development/ci_lint_vue.yml
+1
-1
No files found.
app/controllers/projects/ci/lints_controller.rb
View file @
caa471b8
...
...
@@ -3,7 +3,7 @@
class
Projects::Ci::LintsController
<
Projects
::
ApplicationController
before_action
:authorize_create_pipeline!
before_action
do
push_frontend_feature_flag
(
:ci_lint_vue
,
project
)
push_frontend_feature_flag
(
:ci_lint_vue
,
project
,
default_enabled:
true
)
end
feature_category
:pipeline_authoring
...
...
app/views/projects/ci/lints/show.html.haml
View file @
caa471b8
...
...
@@ -3,7 +3,7 @@
%h2
.pt-3.pb-3
=
_
(
"Validate your GitLab CI configuration"
)
-
if
Feature
.
enabled?
(
:ci_lint_vue
,
@project
)
-
if
Feature
.
enabled?
(
:ci_lint_vue
,
@project
,
default_enabled:
true
)
#js-ci-lint
{
data:
{
endpoint:
project_ci_lint_path
(
@project
),
help_page_path:
help_page_path
(
'ci/lint'
,
anchor:
'pipeline-simulation'
)
}
}
-
else
...
...
changelogs/unreleased/249661-ci_lint_vue-default-true.yml
0 → 100644
View file @
caa471b8
---
title
:
Load CI lint checks without refreshing the page
merge_request
:
46801
author
:
type
:
changed
config/feature_flags/development/ci_lint_vue.yml
View file @
caa471b8
...
...
@@ -4,4 +4,4 @@ introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/42401
rollout_issue_url
:
https://gitlab.com/gitlab-org/gitlab/-/issues/249661
group
:
group::continuous integration
type
:
development
default_enabled
:
false
\ No newline at end of file
default_enabled
:
true
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment