The pkgcheck scan --commits --check GitCommitsCheck adds a check to ensure that commit messages are formatted properly - this works as a fair stand-in for repoman commit.
Is it possible to add this check for Pull Requests? It should be pretty straighforward, since --commits automatically checks against master.
This would be a bit more challenging to run on master - it'd be trivial to add --commits HEAD~, but what if more than one commit was just pushed?
The
pkgcheck scan --commits --check GitCommitsCheckadds a check to ensure that commit messages are formatted properly - this works as a fair stand-in forrepoman commit.Is it possible to add this check for Pull Requests? It should be pretty straighforward, since
--commitsautomatically checks against master.This would be a bit more challenging to run on
master- it'd be trivial to add--commits HEAD~, but what if more than one commit was just pushed?