cz-conventional-changelog-for-jira-smart-commits
Version:
Commitizen adapter following the conventional-changelog format and also asking for JIRA issue with Smart Commits.
31 lines (30 loc) • 665 B
JavaScript
module.exports = {
nothing: {
description: 'Do not Transition the issue',
title: 'DO NOTHING'
},
todo: {
description: 'Transition the issue in TODO',
title: 'TODO'
},
'in-progress': {
description: 'Transition the issue to progress',
title: 'IN PROGRESS'
},
'in-review': {
description: 'Transition the issue for Review',
title: 'IN REVIEW'
},
blocked: {
description: 'Transition the issue to blocked state',
title: 'BLOCKED'
},
qa: {
description: 'Transition the issue to QA',
title: 'QA'
},
production: {
description: 'Transition the issue in production',
title: 'PRODUCTION'
}
};