| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
Currently, the commit message summary line regex in check-commits.sh
allows CONTRIBUTORS but not AUTHORS. Add AUTHORS.
Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
|
| |
|
|
| |
Some dependencies update fail because of the len(descr_line)>120.
|
| |
|
|
| |
To make it more clear what is the actual check.
|
| |
|
|
|
|
| |
The old regexp choked on the following commit message, which we should
allow according to dvyukov@:
pkg/cover/backend: [symbStart, symbEnd) is a half-closed range
|
| |
|
|
|
| |
Base points to already commetted changes,
we really want to cheack head of the PR.
|
| |
|
|
| |
Allow the canonical 'git revert' format.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
We currently check from github.event.pull_request.base.sha
to github.event.pull_request.head.sha, but they may be in
different branches if the PR commits are branched not from
the latest master HEAD (at the time of PR creation).
Then GH will create a merge commit, and the range we try
to check is not valid.
Check github.event.pull_request.commits commits backwards
from github.event.pull_request.head.sha commit.
|
|
|
Check PR commit subjects for the standard format we use "pkg/name: description of the change".
Check PR commit bodies for at most 120 characters.
|