area-51/lib/video.js-main/.github/actions/pr-titles.js

14 lines
521 B
JavaScript
Raw Permalink Normal View History

2025-01-30 04:21:55 +01:00
const core = require('@actions/core');
const github = require('@actions/github');
(async function run() {
const title = github.context.payload.pull_request?.title;
const titleRegex = /^(chore|ci|docs|feat|fix|refactor|revert|test)(\(.+\))?!?: (.+)/;
if (!!title.match(titleRegex)) {
core.info('Pull request title is OK');
} else {
core.setFailed('Please use conventional commit style for the PR title so the merged change appears in the changelog. See https://www.conventionalcommits.org/.');
}
})();