Commit 4aedd763 authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents 2b28109a f10208a3
# Backend Maintainers are the default for all ruby files # 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 *.rb @gitlab-org/maintainers/rails-backend
*.rake @ashmckenzie @ayufan @dbalexandre @DouweM @dzaporozhets @godfat @grzesiek @mkozono @mayra-cabrera @nick.thomas @rspeicher @rymai @reprazent @smcgivern @tkuah *.rake @gitlab-org/maintainers/rails-backend
# Technical writing team are the default reviewers for everything in `doc/` # Technical writing team are the default reviewers for everything in `doc/`
/doc/ @axil @marcia @eread @mikelewis /doc/ @axil @marcia @eread @mikelewis
...@@ -10,11 +10,11 @@ app/assets/ @ClemMakesApps @fatihacet @filipa @iamphill @mikegreiling @timzallma ...@@ -10,11 +10,11 @@ app/assets/ @ClemMakesApps @fatihacet @filipa @iamphill @mikegreiling @timzallma
*.scss @annabeldunstone @ClemMakesApps @fatihacet @filipa @iamphill @mikegreiling @timzallmann @kushalpandya @pslaughter *.scss @annabeldunstone @ClemMakesApps @fatihacet @filipa @iamphill @mikegreiling @timzallmann @kushalpandya @pslaughter
# Maintainers from the Database team should review changes in `db/` # Maintainers from the Database team should review changes in `db/`
db/ @abrandl @NikolayS db/ @gl-database
lib/gitlab/background_migration/ @abrandl @NikolayS lib/gitlab/background_migration/ @gl-database
lib/gitlab/database/ @abrandl @NikolayS lib/gitlab/database/ @gl-database
lib/gitlab/sql/ @abrandl @NikolayS lib/gitlab/sql/ @gl-database
/ee/db/ @abrandl @NikolayS /ee/db/ @gl-database
# Feature specific owners # Feature specific owners
/ee/lib/gitlab/code_owners/ @reprazent /ee/lib/gitlab/code_owners/ @reprazent
......
...@@ -10,17 +10,29 @@ export default () => { ...@@ -10,17 +10,29 @@ export default () => {
JobApp, JobApp,
}, },
render(createElement) { render(createElement) {
const {
deploymentHelpUrl,
runnerHelpUrl,
runnerSettingsUrl,
variablesSettingsUrl,
endpoint,
pagePath,
logState,
buildStatus,
projectPath,
} = element.dataset;
return createElement('job-app', { return createElement('job-app', {
props: { props: {
deploymentHelpUrl: element.dataset.deploymentHelpUrl, deploymentHelpUrl,
runnerHelpUrl: element.dataset.runnerHelpUrl, runnerHelpUrl,
runnerSettingsUrl: element.dataset.runnerSettingsUrl, runnerSettingsUrl,
variablesSettingsUrl: element.dataset.variablesSettingsUrl, variablesSettingsUrl,
endpoint: element.dataset.endpoint, endpoint,
pagePath: element.dataset.buildOptionsPagePath, pagePath,
logState: element.dataset.buildOptionsLogState, logState,
buildStatus: element.dataset.buildOptionsBuildStatus, buildStatus,
projectPath: element.dataset.projectPath, projectPath,
}, },
}); });
}, },
......
...@@ -12,4 +12,5 @@ ...@@ -12,4 +12,5 @@
runner_help_url: help_page_path('ci/runners/README.html', anchor: 'setting-maximum-job-timeout-for-a-runner'), 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'), 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'), 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 } } build_options: javascript_build_options } }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment