-
Updated
Nov 25, 2021 - Rust
conventional-commits
Here are 263 public repositories matching this topic...
-
Updated
Nov 25, 2021 - SCSS
-
Updated
Nov 16, 2021 - JavaScript
Which will behave like that
let settings = await prettyConfig('rollup', { configFiles })
if (!settings) {
settings = await prettyConfig('rolldown', { configFiles })
}
console.log(settings)instead of above we can hide it to look like that
const settings = await prettyConfig(['rollup', 'rolldown'], { configFiles })
if (!settings) {
console.log('no config file-
Updated
Aug 27, 2017 - JavaScript
Improve logging
Actually, the logging is made by standard version, we should first disable it and log ourself the following events:
- bump version from
{from}to{to} - output changes in
{projectRoot}/{path-to-changelog}.md - commit created
- tag
{tag}created - push success (if git push occurred)
- run postTargets
{postTargets} - postTarget
{postTargetName}failure - postTarget `{postTarge
-
Updated
Nov 29, 2021 - JavaScript
-
Updated
Nov 29, 2021 - JavaScript
-
Updated
Nov 29, 2021 - JavaScript
-
Updated
Nov 25, 2021 - JavaScript
-
Updated
May 13, 2021 - JavaScript
-
Updated
Nov 29, 2021 - TypeScript
Is there a way to skip doing the Git Pull?
I always ensure that I do a checkout with all history and branches so I do not need the extra pull.
It is actually quite harmful where I want to be able to build my commit on a merge to main and then tag and release using this action.
However if someone else merges
-
Updated
Nov 19, 2021 - PHP
-
Updated
Nov 26, 2021 - TypeScript
Is your feature request related to a problem? Please describe.
cog edit is not suited for repository that has not been following the conventional commit from the start.
Describe the solution you'd like
Allowing to edit commit from latest tag only would make it usable on a daily basis. Before push our code to remote or rebasing some changes etc.
cog edit --from-lCurrently commitsar defaults to master branch. Given the recent changes by Github it would be good to also default to main, unless specified differently in .commitsar.yml
-
Updated
Nov 25, 2021 - PHP
-
Updated
Oct 20, 2020 - PHP
-
Updated
Oct 29, 2021 - Rust
Maybe it's just a quirk on my machine
-
Updated
Sep 21, 2021 - JavaScript
-
Updated
Sep 22, 2021 - Shell
-
Updated
Sep 27, 2021 - Go
-
Updated
Nov 18, 2021 - JavaScript
-
Updated
Oct 15, 2021 - TypeScript
-
Updated
Nov 20, 2020 - JavaScript
-
Updated
Nov 28, 2019 - JavaScript
Improve this page
Add a description, image, and links to the conventional-commits topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the conventional-commits topic, visit your repo's landing page and select "manage topics."


Description
A config option to include an additional question at the end of
cz committhat displays the DCO and asks if the committer agrees to the DCO and, if yes, appends the lineSigned-off-by: [NAME] <[EMAIL]>at the end of the commit message.[NAME]and[EMAIL]would be pulled from git config.Possible Solutions