| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
This change ensures that the commit message linter doesn't reject revert commits that originally had commit titles with an acceptable length but were elongated during the revert process by running `git revert`. Fixes: nodejs#97 Signed-off-by: Darshan Sen <raisinten@gmail.com>
Codecov Report
@@ Coverage Diff @@
## main #99 +/- ##
==========================================
+ Coverage 93.88% 93.89% +0.01%
==========================================
Files 19 19
Lines 458 459 +1
==========================================
+ Hits 430 431 +1
Misses 28 28
Continue to review full report at Codecov.
|
Sorry, something went wrong.
There was a problem hiding this comment.
If a revert is reverted, doesn't git turn that into Revert "Revert "...""? Maybe that changed or I am misremembering, but if it does, this should maybe account for that.
Sorry, something went wrong.
@tniessen you're correct about the generated commit title but it seems core-validate-commit is not able to parse the subsystem correctly in that case, so I guess support for Revert "Revert "..."" commits can be added in another PR? |
Sorry, something went wrong.
|
@richardlau since you've been creating most of the releases for this repo recently, I thought I should ask you if you could give my npm account (https://www.npmjs.com/~raisinten) enough permissions, so that I can publish v3.16.1 with this change please? (I get this error when I run npm publish - 403 Forbidden - PUT https://registry.npmjs.org/core-validate-commit - You do not have permission to publish "core-validate-commit". Are you logged in as the correct user?) |
Sorry, something went wrong.
|
@RaisinTen I've added you via $ npm owner add raisinten core-validate-commit This operation requires a one-time password. Enter OTP: ****** npm notice INFO: User raisinten invited to package core-validate-commit successfully. + raisinten (core-validate-commit) |
Sorry, something went wrong.
|
@richardlau thanks, I've published v3.16.1! :-) |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
This change ensures that the commit message linter doesn't reject
revert commits that originally had commit titles with an acceptable
length but were elongated during the revert process by running
git revert.
Fixes: #97
Signed-off-by: Darshan Sen raisinten@gmail.com