Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 658 Bytes

setJobDescriptionFromMetadata.md

File metadata and controls

26 lines (20 loc) · 658 Bytes

setJobDescriptionFromMetadata() step

This step sets the description of a job in Jenkins.

Parameters

  • pipelineMetadata: map; pipeline metadata

Example Usage

def pipelineMetadata = [
    pipelineName: 'rpmdeplint',
    pipelineDescription: 'Finding errors in RPM packages in the context of their dependency graph',
    testCategory: 'functional',
    testType: 'rpmdeplint',
    maintainer: 'Fedora CI',
    docs: 'https://github.com/fedora-ci/rpmdeplint-pipeline',
    contact: [
        irc: '#fedora-ci',
        email: '[email protected]'
    ],
]

setJobDescriptionFromMetadata(pipelineMetadata: pipelineMetadata)