Adds content expansion PR type (#6277)

Co-authored-by: NamelessFairy <40036527+NamelessFairy@users.noreply.github.com>
This commit is contained in:
SkyratBot
2021-06-13 03:47:31 +02:00
committed by GitHub
parent 14f72c0fef
commit 0b66913bec
5 changed files with 20 additions and 2 deletions

View File

@@ -698,7 +698,7 @@ function checkchangelog($payload, $compile = true) {
case 'adds':
case 'rscadd':
if($item != 'Added new things' && $item != 'Added more things') {
$tags[] = 'Feature';
$tags[] = 'Mechanic';
$currentchangelogblock[] = array('type' => 'rscadd', 'body' => $item);
}
break;
@@ -744,6 +744,12 @@ function checkchangelog($payload, $compile = true) {
$currentchangelogblock[] = array('type' => 'code_imp', 'body' => $item);
}
break;
case 'expansion':
if($item != 'Expands content of an existing feature'){
$tags[] = 'Content Expansion';
$currentchangelogblock[] = array('type' => 'expansion', 'body' => $item);
}
break;
case 'refactor':
if($item != 'refactored some code'){
$tags[] = 'Refactor';