action-conventional-commits/main.ts
2020-06-11 08:33:49 +02:00

29 lines
937 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const { context } = require("@actions/github");
const core = require("@actions/core");
const isValidCommitMessage = message => message.match(/^[a-z].*:/);
async function run() {
core.info(
` Checking if commit messages are following the Conventional Commits specification...`
);
const hasCommits = context.payload && Array.isArray(context.payload.commits);
if (!hasCommits) {
core.info(`No commits to check, skipping...`);
return;
}
for (let i = 0; i < context.payload.commits.length; i++) {
let commit = context.payload.commits[i];
if (!isValidCommitMessage(commit.message)) {
core.setFailed(
`According to the conventional-commits specification, commit message ${commit.message} is not valid.`
);
}
}
core.info("🎉 All commit messages are following the Conventional Commits specification.");
}
run();