Merge pull request #295 from lmcorreia/feature/#294_imperative_commit_msgs

#294 Make commit messages imperative
This commit is contained in:
Mathias Biilmann 2017-03-16 19:52:02 -07:00 committed by GitHub
commit 99449bd1d9

View File

@ -176,7 +176,7 @@ class Backend {
};
}
const commitMessage = `${ (newEntry ? "Created " : "Updated ") +
const commitMessage = `${ (newEntry ? "Create " : "Update ") +
collection.get("label") } ${ entryObj.slug }`;
const mode = config.get("publish_mode");