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
4aedd763
Commit
4aedd763
authored
Aug 05, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
2b28109a
f10208a3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
16 deletions
+29
-16
.gitlab/CODEOWNERS
.gitlab/CODEOWNERS
+7
-7
app/assets/javascripts/jobs/index.js
app/assets/javascripts/jobs/index.js
+21
-9
app/views/projects/jobs/show.html.haml
app/views/projects/jobs/show.html.haml
+1
-0
No files found.
.gitlab/CODEOWNERS
View file @
4aedd763
# Backend Maintainers are the default for all ruby files
*.rb @
ashmckenzie @ayufan @dbalexandre @DouweM @dzaporozhets @godfat @grzesiek @mkozono @mayra-cabrera @nick.thomas @rspeicher @rymai @reprazent @smcgivern @tkuah
*.rake @
ashmckenzie @ayufan @dbalexandre @DouweM @dzaporozhets @godfat @grzesiek @mkozono @mayra-cabrera @nick.thomas @rspeicher @rymai @reprazent @smcgivern @tkuah
*.rb @
gitlab-org/maintainers/rails-backend
*.rake @
gitlab-org/maintainers/rails-backend
# Technical writing team are the default reviewers for everything in `doc/`
/doc/ @axil @marcia @eread @mikelewis
...
...
@@ -10,11 +10,11 @@ app/assets/ @ClemMakesApps @fatihacet @filipa @iamphill @mikegreiling @timzallma
*.scss @annabeldunstone @ClemMakesApps @fatihacet @filipa @iamphill @mikegreiling @timzallmann @kushalpandya @pslaughter
# Maintainers from the Database team should review changes in `db/`
db/ @
abrandl @NikolayS
lib/gitlab/background_migration/ @
abrandl @NikolayS
lib/gitlab/database/ @
abrandl @NikolayS
lib/gitlab/sql/ @
abrandl @NikolayS
/ee/db/ @
abrandl @NikolayS
db/ @
gl-database
lib/gitlab/background_migration/ @
gl-database
lib/gitlab/database/ @
gl-database
lib/gitlab/sql/ @
gl-database
/ee/db/ @
gl-database
# Feature specific owners
/ee/lib/gitlab/code_owners/ @reprazent
...
...
app/assets/javascripts/jobs/index.js
View file @
4aedd763
...
...
@@ -10,17 +10,29 @@ export default () => {
JobApp
,
},
render
(
createElement
)
{
const
{
deploymentHelpUrl
,
runnerHelpUrl
,
runnerSettingsUrl
,
variablesSettingsUrl
,
endpoint
,
pagePath
,
logState
,
buildStatus
,
projectPath
,
}
=
element
.
dataset
;
return
createElement
(
'
job-app
'
,
{
props
:
{
deploymentHelpUrl
:
element
.
dataset
.
deploymentHelpUrl
,
runnerHelpUrl
:
element
.
dataset
.
runnerHelpUrl
,
runnerSettingsUrl
:
element
.
dataset
.
runnerSettingsUrl
,
variablesSettingsUrl
:
element
.
dataset
.
variablesSettingsUrl
,
endpoint
:
element
.
dataset
.
endpoint
,
pagePath
:
element
.
dataset
.
buildOptionsPagePath
,
logState
:
element
.
dataset
.
buildOptionsLogState
,
buildStatus
:
element
.
dataset
.
buildOptionsBuildStatus
,
projectPath
:
element
.
dataset
.
projectPath
,
deploymentHelpUrl
,
runnerHelpUrl
,
runnerSettingsUrl
,
variablesSettingsUrl
,
endpoint
,
pagePath
,
logState
,
buildStatus
,
projectPath
,
},
});
},
...
...
app/views/projects/jobs/show.html.haml
View file @
4aedd763
...
...
@@ -12,4 +12,5 @@
runner_help_url:
help_page_path
(
'ci/runners/README.html'
,
anchor:
'setting-maximum-job-timeout-for-a-runner'
),
runner_settings_url:
project_runners_path
(
@build
.
project
,
anchor:
'js-runners-settings'
),
variables_settings_url:
project_variables_path
(
@build
.
project
,
anchor:
'js-cicd-variables-settings'
),
page_path:
project_job_path
(
@project
,
@build
),
build_status:
@build
.
status
,
build_stage:
@build
.
stage
,
log_state:
''
,
build_options:
javascript_build_options
}
}
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