Commit 41fd10b5 authored by FulcrandG's avatar FulcrandG
Browse files

Changing code-owner by maintainer in job.yml files

parent f12cfb6a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ def create_job_doc(job):

    # Getting conf for indexing
    conf = get_conf(job_path)
    code_owner = conf.get("code-owner")
    code_owner = conf.get("maintainer")
    index[conf["default_stage"]].append(conf)

    mkdocs_file_path = MKDOCS_DIR + "/" + JOBS_DIR + "/" + conf["default_stage"] + "/" + job + ".md"
@@ -99,7 +99,7 @@ def create_job_doc(job):
    description = get_description(job_path)
    latest, changelogs = get_changelogs(job_path, job)
    license_content = get_license(job_path)
    user = get_user(conf["code-owner"])
    user = get_user(code_owner)

    # Write final file
    with open(mkdocs_file_path, 'w+') as doc_file:
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@ name: apidoc
description: A ready-to-use apidoc job to build a web documentation of your API
default_stage: build
icon: 📒
code-owner: thomasboni
 No newline at end of file
maintainer: thomasboni
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@ name: coala
description: A ready-to-use coala job to fix your source code
default_stage: static_tests
icon: 🐨
code-owner: thomasboni
 No newline at end of file
maintainer: thomasboni
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@ name: docker
description: A ready-to-use docker job to push the image of your project repository to the gitlab registry
default_stage: build
icon: 🐳
code-owner: thomasboni
 No newline at end of file
maintainer: thomasboni
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@ name: helm_deploy
description: A ready-to-use helm job to deploy your application
default_stage: deployment
icon: ☸️
code-owner: thomasboni
 No newline at end of file
maintainer: thomasboni
 No newline at end of file
Loading