Skip to content

Commit 75596fa

Browse files
Add default labels we want to keep across all repos
1 parent 88d2b77 commit 75596fa

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/ScaffoldPackageCommand.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,10 @@ public function package_github( $args, $assoc_args ) {
434434
'description' => '',
435435
'has_labels' => true,
436436
'labels' => array(
437+
array(
438+
'name' => 'bug',
439+
'color' => 'fc2929'
440+
),
437441
array(
438442
'name' => 'scope:documentation',
439443
'color' => '0e8a16'
@@ -446,6 +450,14 @@ public function package_github( $args, $assoc_args ) {
446450
'name' => 'good-first-issue',
447451
'color' => 'eb6420',
448452
),
453+
array(
454+
'name' => 'help-wanted',
455+
'color' => '159818',
456+
),
457+
array(
458+
'name' => 'maybelater',
459+
'color' => 'c2e0c6',
460+
),
449461
array(
450462
'name' => 'state:unconfirmed',
451463
'color' => 'bfe5bf'
@@ -454,6 +466,10 @@ public function package_github( $args, $assoc_args ) {
454466
'name' => 'state:unsupported',
455467
'color' => 'bfe5bf'
456468
),
469+
array(
470+
'name' => 'wontfix',
471+
'color' => 'c2e0c6',
472+
),
457473
),
458474
);
459475
if ( ! empty( $composer_obj['description'] ) ) {

0 commit comments

Comments
 (0)