mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-19 14:12:55 +00:00
Adds content expansion PR type (#59152)
* Adds content and "jobtent" PR tags * Adds Semicolons * Changes temporary GBP value for jobtent to -2 * Renames content to expansion * Updates PR to follow ninjanomnom's guidelines
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