git-commit-guide
Version:
Commitizen adapter following the conventional-changelog format and also asking for JIRA issue with Smart Commits.
23 lines (22 loc) • 589 B
JavaScript
module.exports = {
nothing: {
description: 'Não move a tarefa.',
title: 'DO NOTHING'
},
'read-for-sprint': {
description: 'Move a tarefa para o campo de tarefas pendentes.',
title: 'TO DO'
},
'dev-in-progress': {
description: 'A tarefa está em desenvolvimento.',
title: 'DEV IN PROGRESS'
},
'code-review': {
description: 'O desenvolvimento da tarefa foi concluído e será enviado para revisão.',
title: 'CODE REVIEW'
},
blocked: {
description: 'Move a tarefa para o campo de tarefas com impedimentos.',
title: 'BLOCKED'
}
};