Minor: Prepare list of prefixes to ignore in future changelogs for humans

pull/5674/head
Yannick Warnier 1 year ago
parent da295a514c
commit b6de24058d
  1. 13
      tests/scripts/packaging/gitlog.php

@ -46,6 +46,19 @@ if (!empty($argv[1])) {
echo "An initial commit has been defined as ".$endCommit.PHP_EOL;
}
}
// List if prefixes that can be skipped when creating a simplified, communication-focused changelog
$skipTechnicalPrefixes = [
'QA',
'Internal',
'Vendor',
'Display',
'Fix',
'Minor',
'Documentation',
'Refactor',
'Migration',
'UI',
];
$git = new \YWarnier\PHPGit\Git($repository);
echo "Log from branch: ".$git->getCurrentBranch().PHP_EOL;

Loading…
Cancel
Save