mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-14 03:32:00 +00:00
Adds content expansion PR type (#6277)
Co-authored-by: NamelessFairy <40036527+NamelessFairy@users.noreply.github.com>
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user