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:
NamelessFairy
2021-06-12 19:11:48 +01:00
committed by GitHub
parent f3d1c73d1a
commit 3d9180c33f
5 changed files with 13 additions and 3 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';